8 lines
86 B
Perl
8 lines
86 B
Perl
$value1 = 1;
|
|
|
|
my $value2 = 2;
|
|
|
|
local $value3 = 3;
|
|
|
|
print join(", ", keys %::);
|