Help for this page

Select Code to Download


  1. or download this
    {
        no strict 'refs';
        # the code
    }
    
  2. or download this
    my %code = (
        foo => \&foo,
        bar => \&bar,
    ...
    );
    my $pick = 'foo';
    $code{$pick)();