Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
    } until $line  eq ".\n";  # Syntax error
    __END__
    Global symbol "$line" requires explicit package name
    
  2. or download this
    use strict;
    
    ...
        last INPUT if $line eq ".\n";
        ...
    }