in reply to Re: Re: storing all type of vars
in thread storing all type of vars
There doesn't seem to be a Stack module on CPAN, but that's probably more to do with the fact that it's simple to implement stacks in Perl using arrays.
--my @stack; push @stack, 'something'; push @stack, 'some thing else'; push @stack, ['something', 'a', 'bit', 'more', 'complex']; my $val = pop @stack;
Perl Training in the UK <http://www.iterative-software.com>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: storing all type of vars
by eod (Acolyte) on Sep 11, 2001 at 15:49 UTC | |
by davorg (Chancellor) on Sep 11, 2001 at 16:13 UTC |