Help for this page

Select Code to Download


  1. or download this
    my $call = '$jobs->$func(' .
      join(', ', map qq{"$_"}, @args) .
      ')';
    
    my %jobstats = eval $call;
    
  2. or download this
    my %jobstats = $jobs->$func(@args);