Help for this page
perl -E"say(join('-', split('', reverse(ucfirst('hello')))))"
compose(sub{ ucfirst $[0] }, sub { $_[0] . "\n" });
perl -e 'print sub { "Hello @{[shift->()]}!\n" }->(sub{"World"})'