Help for this page

Select Code to Download


  1. or download this
    if ( my $t = shift ) { 
       $t =~ s/change_something/to_something_else/;
    } 
    print "$t\n";   # out of scope here
    
  2. or download this
    print $t if (my $t = shift);