Help for this page

Select Code to Download


  1. or download this
    $ perl -le '
        BEGIN { my $x = 1; }
    ...
              ? "defined"
              : "undefined";'
    undefined
    
  2. or download this
    $ perl -Mstrict -le '
        BEGIN { my $x = 1; }
        print $x;'
    Global symbol "$x" requires explicit package name at -e line 2.
    Execution of -e aborted due to compilation errors.