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


in reply to what's a proper way to code method synonyms

sub real_method { ... } sub real_sub { ... } { no strict 'refs'; *{$_} = \&real_method for ( qw( foo bar baz blort +) ) } { no strict 'refs'; *{$_} = \&real_sub for ( qw( quux pony ) ) }