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


in reply to How do YOU do OO in Perl?

I use whatever makes sense to me in any given situation, which in production code has meant everything from blessed hashrefs to accidentally creating my own object system. A few examples that made sense to me when I posted them to PM chosen to give a sense of variety.
  1. Re: Shortening "$bar{foo} if exists $bar{foo}"?
  2. Math::Fleximal
  3. Re (tilly) 1: Nested Classes
  4. Class::FlyweightWrapper
  5. RE (2): Filehandle Filter
But I choose to use a straight blessed hashref more often than not.