Help for this page

Select Code to Download


  1. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "func();
    ...
     sub func { print $string; }
    "
    Use of uninitialized value in print at -e line 1.
    
  2. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "my $string = 'hiya';
    ...
     sub func { print $string; }
    "
    hiya