Help for this page

Select Code to Download


  1. or download this
    my( @array ) = qw/one two three four five/;
    foreach my $number ( @array ) {
        next if $number eq 'three';
        print $number, "\n";
    }
    
  2. or download this
    one
    two
    four
    five