in reply to Wide open Closures?

I don't think you'll have a problem, but I do wonder why you'd do this instead of:

my %stack = ( previous => \%previous, output => \%output, current => \%current );

-sam

Replies are listed 'Best First'.
Re^2: Wide open Closures?
by eff_i_g (Curate) on Dec 02, 2005 at 18:21 UTC
    Clever and cleaner Sam: Thanks :)