in reply to Naming Subs

How about something like this:

my $class = "a_class"; bless { "action1" => action1(), "action2" => action2() }, $class;
this creates an anonymous hash of functions; oop style