Help for this page

Select Code to Download


  1. or download this
    # honour the prototype:
    print foo( one => qw( two three four ) ), "\n";
    
  2. or download this
    # bypass the prototype:
    print &foo( qw( one two three four ) ), "\n";
    
  3. or download this
    # bypass the prototype:
    print &foo( bar(@args) ), "\n";