Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    }
    
    1;
    
  2. or download this
    
    Global symbol "$bar" requires explicit package name at Foo.pm line 6.
    Global symbol "$bar" requires explicit package name at Foo.pm line 9.
    Global symbol "$bar" requires explicit package name at Foo.pm line 10.
    Foo.pm had compilation errors.
    
  3. or download this
    
    use strict;
    ...
    }
    
    1;
    
  4. or download this
    use strict;
    use warnings;
    ...
    
    Foo::init();
    print $Foo::bar;
    
  5. or download this
    Name "Foo::bar" used only once: possible typo at math1.pl line 7.
    Use of uninitialized value in print at math1.pl line 7.