Help for this page

Select Code to Download


  1. or download this
    # while naming a sub like in:
    defined &my_sub_name;
    ...
    # making a reference to a sub
    $coderef   = \&handler;
    
  2. or download this
        &foo(1,2,3);    # pass three arguments
        foo(1,2,3);     # the same
    ...
        &foo();         # the same
        &foo;           # foo() get current args, like foo(@_) !!
        foo;            # like foo() IFF sub foo predeclared, else "foo"