http://www.perlmonks.org?node_id=514375


in reply to Re: How to sovle this, if i use strict i'm getting error.
in thread How to sovle this, if i use strict i'm getting error.

I suppose I'm nitpicking here, but something has always bothered me about this answer (and those like it). Perl already provides a perfectly code "dispatch table", that is, a hash that maps subroutine names to subroutine references! I'm not sure why people are so strongly discouarged from using it. It's one thing to discourage accessing this hash for variables, since that leads to global variables and other such evil, but in this case you're just wasting effort to create something that already exists.