Help for this page

Select Code to Download


  1. or download this
    for my $f (reverse @file) {
      print $f;
    }
    
  2. or download this
    while (@file) {
      print pop @file;
    }