Help for this page

Select Code to Download


  1. or download this
        my $parse_next_line = sub {
            my $line = shift @lines;
            ...
        };
        $parse_next_line->() while @lines;
    
  2. or download this
        foreach my $line (@lines) {
            ...
        }