- or download this
if ($act eq 'open_file'){
#stuff;
}
...
elsif ( $act eq 'speak' ) {
# stuff;
}
- or download this
package My::Actions;
use Carp;
...
my $class = shift;
croak "Class ($class) did not implement do_stuff()";
}
- or download this
use My::Actions;
my $object = My::Actions->factory($act);
$object->do_stuff;