Help for this page

Select Code to Download


  1. or download this
    use strict;
    $main::foo = 'bar'; # that's ok
    
  2. or download this
    use strict;
    $foo = 'bar'; # error!!! it doesn't work with strict pragma!
    
  3. or download this
    #!/usr/bin/perl
    
    ...
    $main::foo = 'bar';
    
    print pkg1_get_foo()."\n";
    
  4. or download this
    use strict;
    
    ...
    }
    
    1;