Help for this page

Select Code to Download


  1. or download this
    eval "sub $action { my \$pkg = shift; return(\$pkg->{\"$action\"}); }"
    +;
    
  2. or download this
    {
      my $action = "whatever";
      no strict 'refs';
      *{$action} = sub { my $pkg = shift; return $pkg->{$action}; };
    }