Pardus has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use Tie::Hash::Stack; my (%a, %b); tie %a, 'Tie::Hash::Stack'; print( (tied(%a) ? 'tied' : 'NOT tied'), " a\n"); *b = \%a; print( (tied(%b) ? 'tied' : 'NOT tied'), " b\n");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How do I pass refs to tied vars ?
by broquaint (Abbot) on May 19, 2003 at 15:15 UTC | |
|
Re: How do I pass refs to tied vars ?
by japhy (Canon) on May 19, 2003 at 15:36 UTC | |
|
Re: How do I pass refs to tied vars ?
by Zed_Lopez (Chaplain) on May 19, 2003 at 18:00 UTC | |
|
Re: How do I pass refs to tied vars ?
by gmpassos (Priest) on May 19, 2003 at 19:40 UTC |