Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^2: Problem with accessing hash Module::CoreList::version with $]

by Anonymous Monk
on Apr 24, 2009 at 10:13 UTC ( [id://759776]=note: print w/replies, xml ) Need Help??


in reply to Re: Problem with accessing hash Module::CoreList::version with $]
in thread Problem with accessing hash Module::CoreList::version with $]

Actually that makes no difference, works just fine in 5.10. His problem is he expect Data::Dumper output to be identical. Maybe if he use $Data::Dumper::Sortkeys ... or this
#!/usr/bin/perl use strict; use warnings; use Module::CoreList; use Data::Dumper; $Data::Dumper::Sortkeys=1; print Dumper( $Module::CoreList::version{ $] }, $Module::CoreList::version{ "$]" }, $Module::CoreList::version{ 5.010000 } ); __END__ $VAR1 = { 'AnyDBM_File' => '1.00', ..... }; $VAR2 = $VAR1; $VAR3 = $VAR1;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://759776]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-04-24 17:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found