Jer A wrote:
> if this is how to exec a subroutine ref, without params .eg $o = &$c;
>
> how do I pass parameters to it.
>
> thanks in advance for your help.
>
> Jeremy A
I would spell that like this:
$o = &{$c}();
And then put the arguments between the parenthesis as usual.
-- Darren Duncan