Help for this page

Select Code to Download


  1. or download this
    &foo(1,2,3);    # pass three arguments
    foo(1,2,3);     # the same
    ...
    
    &foo;           # foo() get current args, like foo(@_) !!
    foo;            # like foo() IFF sub foo predeclared, else "foo"