Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
into this:$VAR1 = { 'myname1' => { 'x' => '13', 'y' => '2', 'z' => '41', }, 'myname2' => { 'x' => '6', 'y' => '6', 'z' => '22' } }
What I did was remove the 'myname1' and 'myname2'.$VAR1 = { { 'x' => '13', 'y' => '2', 'z' => '41', }, { 'x' => '6', 'y' => '6', 'z' => '22' } }
jdporter - edited - title and html formatting
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How do I make a hash entry anonymous
by QM (Parson) on Mar 24, 2004 at 20:22 UTC | |
|
Re: How do I make a hash entry anonymous
by Anonymous Monk on Mar 24, 2004 at 20:27 UTC |