in reply to Re: perl equivalent to ruby's alias
in thread perl equivalent to ruby's alias

I think Attribute::Alias might work better.
sub foo :Alias(bar) { ... } # These both do the same thing. foo(); bar();

My criteria for good software:
  1. Does it work?
  2. Can someone else come in, make a change, and be reasonably certain no bugs were introduced?