Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl - w
    
    ...
    
    my @list = qw (first    second    third    fourth    fifth    sixth   
    + seventh    eigth    ninth    tenth);
    print join ' ', reverse (@list);
    
  2. or download this
    #!/usr/bin/perl - w
    
    ...
    my @list = qw (first    second    third    fourth    fifth    sixth   
    + seventh    eigth    ninth    tenth);
    my @reverse = reverse (@list);
    print "@reverse";