- or download this
sub init
...
our ($foo);
$foo++; # same variable, $main::foo, as in init
}
- or download this
sub dec
{
$foo++; # not allowed because $foo not declared
}
- or download this
init(); inc(); inc(); inc();
($main::foo == 3) && print "Three!\n";