Help for this page

Select Code to Download


  1. or download this
    sub myfunc {
       my $arg = @_ ? $_[0] : $_;
    ...
          ...
       }
    }
    
  2. or download this
    sub myfunc {
       for (@_ ? $_[0] : $_) {
          ...
       }
    }