Help for this page

Select Code to Download


  1. or download this
    BEGIN { require bytes; bytes->import if $condition }
    
  2. or download this
    $foo = $a;
    BEGIN { require strict; strict->import if 1 }
    ...
    Variable "$foo" is not imported at x line 3.
    Global symbol "$foo" requires explicit package name at x line 3.
    x had compilation errors.
    
  3. or download this
    $foo = $a;
    BEGIN { require strict; strict->import if 0 }
    $foo = $a;
    __END__