Help for this page

Select Code to Download


  1. or download this
    while (<STDIN>) {
        $_ = "hi test text" if some_condition;
        # etc
    }
    
  2. or download this
    while (<STDIN>) {
        do {
            local $_ = $_;
    ...
        } if some_condition;
        # more stuff
    }