Help for this page

Select Code to Download


  1. or download this
    for ( my $i = 0; $i < @array; $i++ ) {
     ...
    }
    
  2. or download this
    my @array = qw/ zero one two three four /;
    for ( my $i = 0; $i < $#array; $i++ ) {
        print $array[$i],$/;
    }
    
  3. or download this
    sub foo {
        my $arg = shift;
    ...
            $bar[ $data ] += $arg;
        }
    }