Help for this page

Select Code to Download


  1. or download this
    my $stuff;
    for(return_value()) {
    ...
        tr/x/y/;
        $stuff = $_;
    }
    
  2. or download this
    my $stuff = return_value();
    for($stuff) {
    ...
        s/foo//g;
        tr/x/y/;
    }