Help for this page

Select Code to Download


  1. or download this
    my @array = qw( wilma fred barney betty );
    
    ...
        #     print $array[ $i + 1 ] unless $i == $#array;
        #
    }
    
  2. or download this
    use strict;
    my @array = qw( wilma fred barney betty );
    ...
    # It's useful if you plan to break out of your loop with
    # a 'next' command.