http://qs321.pair.com?node_id=609501

tlm has asked for the wisdom of the Perl Monks concerning the following question:

Is this evil:
sub foo { call_me_only_once(); no warnings 'redefine'; *foo = sub { ... }; # the final foo goto &foo; }

?

Update: inserted the missing "no warnings" line.

the lowliest monk