Help for this page

Select Code to Download


  1. or download this
    return;
    
  2. or download this
    return undef;
    
  3. or download this
    for ( my $i = 0; $i <= $#myarray; $i++ ) {
       #  do something with $myarray[$i];
    ...
    for my $elem ( @myarray ) {
       # do something with $elem
    }