Re: how in the hash and keep it simple

2002-06-06 Thread drieux
On Thursday, June 6, 2002, at 01:07 , Jeff 'japhy' Pinyan wrote: [..] > Oops! That one is NOT for copies -- the makes all three point to the same > array reference, and it's probably the most convenient way to do it. [..] ok, I'm gonna skip over the WHY part of the question thank Japhy for

Re: how in the hash and keep it simple

2002-06-06 Thread Jeff 'japhy' Pinyan
On Jun 6, Jeff 'japhy' Pinyan said: >On Jun 6, Jerry Preston said: > >> %T_MODLUES = ( >> A1 => [ qw/ A B C D E F/ ], >> A2 => [ qw/ A B C D E F/ ], >> A3 => [ qw/ A B C D E F/ ], >>

Re: how in the hash and keep it simple

2002-06-06 Thread Jeff 'japhy' Pinyan
On Jun 6, Jerry Preston said: > %T_MODLUES = ( > A1 => [ qw/ A B C D E F/ ], > A2 => [ qw/ A B C D E F/ ], > A3 => [ qw/ A B C D E F/ ], > N => [ qw/ A1 A2 A3/], >

Re: how in the hash and keep it simple

2002-06-06 Thread David T-G
Jerry -- ...and then Jerry Preston said... % % Hi! Hello! % % I am not sure on how to do this, but I am sure if there is a way, Perl can % do it! % % %T_MODLUES = ( % A1 => [ qw/ A B C D E F/ ], % A2 => [ qw/ A B C D E F/ ]

how in the hash and keep it simple

2002-06-06 Thread Jerry Preston
Hi! I am not sure on how to do this, but I am sure if there is a way, Perl can do it! %T_MODLUES = ( A1 => [ qw/ A B C D E F/ ], A2 => [ qw/ A B C D E F/ ], A3 => [ qw/ A B