Help for this page

Select Code to Download


  1. or download this
    while (<>) {
        last if /pattern/;
        ...
    }
    
  2. or download this
    C:\>perl -MO=Deparse -e"while (<>) {}"
    while (defined($_ = readline ARGV)) {
    ...
    -e syntax OK
    
    C:\>