Help for this page
sub foo { print "In sub foo!" }; %bar = ( baz => \&foo ); $foo{baz}();
&{$bar{baz}}(); $bar{baz}->();