in reply to Use of the => operator
: Second, is there even a practical solution?
yes, quite a few:
%a = ( '09' => 'a' ); %a = ( '09', 'a' ); %a = qw( 09 a ); $key = '09'; $value = 'a'; %a = ( $key => $value );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Use of the => operator
by roju (Friar) on Aug 10, 2004 at 15:33 UTC |