Help for this page

Select Code to Download


  1. or download this
    do_stuff($foo, $bar, $foo_too, $bar_too, $foo_who_poo);
    
    sub do_stuff {
       my ($foo, $bar, $foo_too, $bar_too, $foo_who_poo) = @_;
    }
    
  2. or download this
    do_stuff(one=>$foo, two=>$bar, three=>$foo_too, four=>$foo_who_poo);
    
    sub do_stuff {
       my %args = @_;
    }