- or download this
BEGIN { require bytes; bytes->import if $condition }
- 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.
- or download this
$foo = $a;
BEGIN { require strict; strict->import if 0 }
$foo = $a;
__END__