Help for this page

Select Code to Download


  1. or download this
    # foo.pl - print a file in reverse
    
    ...
    for my $line (@lines) {
        print $line;
    }
    
  2. or download this
    $ perl foo.pl foo.pl
    
    ...
    use strict;
    
    # foo.pl - print a file in reverse