in reply to get one value from Tie::IxHash
#!/usr/bin/perl -- use strict; use warnings; use Tie::IxHash; my $r = new Tie::IxHash() ; $r->Push( 'a' => 1 ) ; die $r->FETCH('a'); __END__ 1 at - line 7. [download]