Thanks, that solved a different problem that I had...
Given formal parameter list @params, and argument list @args, how do you get %table such that $table{$param[i]} eq $args[i].
Solution: @table{@params} = @args;
That'll eliminate a subroutine or two in my current project...