Help for this page

Select Code to Download


  1. or download this
    my $j = 0;
    
    ...
    }
    
    print "undefined indices:  @empty \n";
    
  2. or download this
    my @empties = ();
    for my $i(0..$#array) {
    ...
       }
    }
    print "undefined indices @empties\n";