Help for this page

Select Code to Download


  1. or download this
    The number zero being automatically converted to a string:
    >perl -wle"my $x = 0; print $x"
    ...
    >perl -wle"my $x = undef; print $x"
    Use of uninitialized value in print at -e line 1.