Help for this page

Select Code to Download


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