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