RosettaCodeData/Task/Variables/Perl/variables-4.pl

11 lines
307 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
$fruit="apple"; # this will be global by default
sub dofruit {
print "My global fruit was $fruit,"; # use the global variable
my $fruit="banana"; # declare a new local variable
print "and the local fruit is $fruit.\n";
}
dofruit;
print "The global fruit is still $fruit";