Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print "foo is >$foo<\n";
    __END__
    foo is >3<
    
  2. or download this
    use strict;
    use warnings;
    ...
    __END__
    Global symbol "$foo" requires explicit package name at - line 10.
    Execution of - aborted due to compilation errors.
    
  3. or download this
    use strict;
    use warnings;
    ...
    __END__
    Global symbol "$foo" requires explicit package name at - line 10.
    Execution of - aborted due to compilation errors.