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.

8 lines
153 B
Perl

my $name="Tommy";
{ my $name = "Tom";
my $age = 6;
$ref = sub{ return "$name is $age.\n"; }
}
print "$name is back\n";
print &{$ref};