##
if( exists $dispatch{ $action } ) {
$dispatch{ $action }->();
}
else {
$default->();
}
####
&{ $dispatch{ $action } || $default }();
####
while ( chomp( my $opt = ) ) {
&{ $options{ $opt } || $options{ '' } }()
or last;
}