Stumbled upon the ability to define subroutines within subroutines. Don't know if this is
intentional or not on Mr Wall's part, but I was trying to think of ways to take advantage of
it nonetheless. Alas, my novice Perl imagination has yet to be expanded. Perhaps a wiser
Monk can show me new pathways...
Example:
sub foo {
print "Hello\n";
sub bar {
print "world!\n";
}
bar();
}
foo();
bar();