- or download this
$ourVAR = "123 ABC";
{
...
__END__
my packAA ourVAR = 456 RST
our packAA ourVAR = 123 ABC
- or download this
package Foo;
our $foo = 'bar';
package main;
print $foo,"\n"; # bar
- or download this
# file foo.pl
use strict;
our $shared = "one fish";
- or download this
# file bar.pl
use strict;
our $shared =~ s/e f/e half f/;
- or download this
#/usr/bin/perl
use strict;
...
print $shared,"\n";
__END__
one half fish