How To Use Tie::IxHash With Anonymous Hash Variables In Perl
erics, Posted May 18th, 2011 at 10:59:29pm
1 2 3 4 5 |
use Tie::IxHash; my $myHash = {}; tie(%{$myHash}, 'Tie::IxHash'); $myHash->{'a'} = 'apple'; $myHash->{'b'} = 'blueberry'; |
Leave Your Comment
All fields marked with "*" are required.