in reply to Re^2: Problems with Safe compartment reval parameters
in thread Problems with Safe compartment reval parameters
Yes, you are initialising a hash, but not the one the one you're sharing. share shares package variables — %main::params in this case — but you're initialising a lexical (my) variable.
Change my %params to local our %params.
|
|---|