Help for this page

Select Code to Download


  1. or download this
    {   # start a new scope to keep the effect of "no strict" small
        no strict 'refs';
        $return_value = &$generic_sub(@args);
    }
    
  2. or download this
    $return_value = eval("$generic_sub(\@args)");
    die $@ if $@;