in reply to Re^2: I hate the leading underscores.
in thread I hate the leading underscores.
(Yes, I may have done as suggested by you instead.)my %dispatch=(FOO => \&_foo, BAR => \&_bar, # ... LAST => \&_last); # And at the end of the script: sub _foo { # ... } sub _bar { # ... } # ...
|
---|