Help for this page

Select Code to Download


  1. or download this
    my @file_lines = <>;
    
  2. or download this
    while ( my $line = <> ) {
       print "The line is: $line";
       push @file_lines, $line;
    }