Help for this page

Select Code to Download


  1. or download this
    my %functions = (
      function1 => {arglist1 => ["arg1", { arg2 => val2 }],
    ...
            &{"harcommon::$func"}(@{$argsList->{$key}});
        }
    }
    
  2. or download this
    my %functions = (
      function1 => [["arg1", { arg2 => val2 }],
    ...
            &{"harcommon::$func"}(@$args);
        }
    }