From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 08 June 2006 09:33 To: Brian Raven; [email protected] Subject: RE: IxHash and Data::Dumper
> Thanks Brain I haven't been addressed like that since my grandmother was alive, over 30 years ago. :-) > I have this script that I ran > > use Data::Dumper; > use IxHash; > print @INC; > my %hash; > tie %hash, "IxHash"; > %hash = ( > VAR1 => 'DATA1', > VAR2 => 'DATA2', > VAR3 => 'DATA3', > VAR4 => 'DATA4' > ); > print Data::Dumper::Dumper(\%hash); I'm afraid this doesn't even compile on my box. The use statement should be "use Tie::IxHash;" and the tie statement should be "tie %hash 'Tie::IxHash';". It works as expected if I fix those errors. If the code above actually compiles for you, then I suspect that you have not installed the module properly. Did you use ppm, which knows what to do? HTH -- Brian Raven ================================= Atos Euronext Market Solutions Disclaimer ================================= The information contained in this e-mail is confidential and solely for the intended addressee(s). Unauthorised reproduction, disclosure, modification, and/or distribution of this email may be unlawful. If you have received this email in error, please notify the sender immediately and delete it from your system. The views expressed in this message do not necessarily reflect those of Atos Euronext Market Solutions. L'information contenue dans cet e-mail est confidentielle et uniquement destinee a la (aux) personnes a laquelle (auxquelle(s)) elle est adressee. Toute copie, publication ou diffusion de cet email est interdite. Si cet e-mail vous parvient par erreur, nous vous prions de bien vouloir prevenir l'expediteur immediatement et d'effacer le e-mail et annexes jointes de votre systeme. Le contenu de ce message electronique ne represente pas necessairement la position ou le point de vue d'Atos Euronext Market Solutions. _______________________________________________ ActivePerl mailing list [email protected] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
