Help for this page

Select Code to Download


  1. or download this
        my $foo = undef;  # Variable is initialized.
        print $foo;
        __END__
        Use of uninitialized value in print
    
  2. or download this
        my @foo = qw /bar baz quux/;