Help for this page
sub foo { my $bar = sub { ... }; $bar->(); };
sub foo { local *bar = sub { ... }; bar(); };