Help for this page

Select Code to Download


  1. or download this
    my @array;
    if (defined $array[20]) { }                           # no autovivific
    +ation, thus
    if (defined $array[20]) { warn "[20] does exist!" }   # no warning
    
  2. or download this
    my @array;
    if (exists $array[20]->[42]) { }
    ...
    
    __END__
    [20] does exist! at ./808911.pl line 5.