Help for this page

Select Code to Download


  1. or download this
    for my $i (0..$#array) {
       print("Element $array[$i] was found at index $i\n");
    }
    
  2. or download this
    for my $i (0..$#array) {
       my $e = $array[$i];
       print("Element $e was found at index $i\n");
    }
    
  3. or download this
    for my $i (0..$#array) {
       for my $e ($array[$i]) {
          print("Element $e was found at index $i\n");
       }
    }