Help for this page

Select Code to Download


  1. or download this
    #!/opt/perl5/bin/perl -w
    
    ...
    for(reverse(@lines)) {
      print;
    }
    
  2. or download this
    while(@lines) {
      print pop(@lines);
    }