Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    --output:--
    no
    Use of uninitialized value in say at 1.pl line 15.
    
  2. or download this
    my @arr = (undef);
    
    ...
    --output:--
    yes
    Use of uninitialized value $arr[0] in say at 1.pl line 14.