Help for this page

Select Code to Download


  1. or download this
    sub somefunc {
        my $arg = shift;
    ...
    print "$x\n";             # prints "quz"
    my @y = somefunc("c");
    print join(",",@y),"\n";  # prints "foo,bar"