Help for this page

Select Code to Download


  1. or download this
    $i = undef;  print(defined($i) ? "[$i]" : 'undef', "\n");
    $i = !1;     print(defined($i) ? "[$i]" : 'undef', "\n");
    ...
    ------
    undef
    []