You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
190 B
Perl

#!/usr/bin/perl -w
$x = 10;
print "before: $x\n";
change_global_not();
print "after: $x\n";
sub change_global_not {
my $x = 20;
print "in change_global_not(): $x\n";
}