Help for this page

Select Code to Download


  1. or download this
    use warnings;
    my $str = 'foo';
    print "$str\n";  # ok
    $str = undef;
    print "$str\n";  # emits "uninitialized" warning