Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        $index++;
    }
    
  2. or download this
    
    my @array = (1..9);
    print +(pop @array),"\n" while (@array);
    
  3. or download this
    my @array = (1..9);
    print "array[$_]\n" for (reverse (0..$#array));