Help for this page

Select Code to Download


  1. or download this
    foo a b c = a ++ c ++ b
    with_parens a b = foo a b
    y = with_parens "<" ">"
    
  2. or download this
    use strict;
    use Carp;
    ...
    my $x = foo(1,2);
    &$x(3);
    &$x(2);