RosettaCodeData/Task/Scope-modifiers/Perl/scope-modifiers-4.pl
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

17 lines
261 B
Perl

our $camelid = 'llama';
sub phooey
{
print "$camelid\n";
}
phooey; # Prints "llama".
sub do_phooey
{
local $camelid = 'alpaca';
phooey;
}
do_phooey; # Prints "alpaca".
phooey; # Prints "llama".