in reply to Re^2: Regarding Hashes of Arrays
in thread Regarding Hashes of Arrays
do you know of a way to do complex datastructures in Perl without references?
Yes.
leftovers from perl4, I know, but it's still valid perl.$hash{1,2,3,4} = 'one'; $hash{1,2,3,5} = 'two'; print $hash{1,2,3,4},$hash{1,2,3,5}; __END__ onetwo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Regarding Hashes of Arrays
by hardburn (Abbot) on Aug 10, 2004 at 20:51 UTC | |
by Joost (Canon) on Aug 10, 2004 at 20:59 UTC |