Help for this page

Select Code to Download


  1. or download this
    sub proto ($@) {
      print "$_[0]; $_[1..$#_]\n";
    ...
    
    proto($args[0], @args[1..$#args]);
    proto(@args[0..$#args]);