Help for this page

Select Code to Download


  1. or download this
    while (<FH>) {
      # localized $_
    ...
      }
      # previous $_
    }
    
  2. or download this
    sub foo {
      $_ = shift;  # TSK!  local $_
      tr/aeiou/AEIOU/;
      return $_;
    }