- or download this
my %disp_table = ( something => \&do_something );
- or download this
$disp_table{'something'}->();
- or download this
($disp_table{'not there'} || sub {})->();
- or download this
one => sub { print "Number!\n" },
two => sub { print "Number!\n" },
three => sub { print "Number!\n" },
- or download this
one => sub { print "The loneliest "; number() },
two => \&number,
three => \&number,