Help for this page

Select Code to Download


  1. or download this
    my $dispatch = {
        foo => \&foo,
        bar => sub { print "an anon sub\n" },
        baz => \&Package::function
    };
    
  2. or download this
    my %dispatch = map { $_ => \&{$hash{$_}} } keys %hash;