in reply to Re: hash to text
in thread hash to text
my %h = ( word1 =>[2,3], word2 =>[1,3], word3 =>[1,2] ); $h{word1} = [ $h{word2},$h{word3}]; $h{word2} = [ $h{word1},$h{word3}]; $h{word3} = [ $h{word1},$h{word2}]; print @{ @{ $h{'word3'} }[0] }[0], "\n";
it gives me out the output : ARRAY(0x8064e68)
And, how can i see this in normal now ?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: hash to text
by Velaki (Chaplain) on Aug 14, 2004 at 22:02 UTC |