http://qs1969.pair.com?node_id=403535


in reply to Re: Functional Programming & method rewriting
in thread Functional Programming & method rewriting

Hmm, I did go the long way to do it, didn't I? :)
Thanks for the idea.

sub foo { print "hi mom\n"; my $ptr = \&foo; *foo=sub { print "that was unneccessary:"; $ptr->(); }; } foo(); foo();

Hmm, more Perl voodoo. I like it.