in reply to Re: Hiding, but maintaining variables in user-defined codein thread Hiding, but maintaining variables in user-defined code
package My; my $self; sub execute { #... $self=$call; $call->(); undef$self; } [download]