Help for this page

Select Code to Download


  1. or download this
    $ perl -Mstrict -le 'print $x'
    Global symbol "$x" requires explicit package name at -e line 1.
    Execution of -e aborted due to compilation errors.
    
  2. or download this
    $ perl -Mstrict -w -le 'print my $x'
    Use of uninitialized value in print at -e line 1.