Help for this page

Select Code to Download


  1. or download this
    sub routine {
      my $module = shift;
    ...
      no strict 'refs';
      return &{"Foo::Bar::$module::$routine"}(@params);
    }
    
  2. or download this
    sub routine {
      my $module = shift;
    ...
      no strict 'refs';
      return &{"Foo::Bar::$module::$routine"}(@params);
    }