in reply to Problem with accessing hash Module::CoreList::version with $]
See how they all reference the same hash? They're all the same#!/usr/bin/perl use strict; use warnings; use Module::CoreList; print qq{ $Module::CoreList::version{ $] } $Module::CoreList::version{ "$]" } $Module::CoreList::version{ 5.010000 } }; __END__ HASH(0x1a97888) HASH(0x1a97888) HASH(0x1a97888)
pmvers Module::CoreList 2.17
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem with accessing hash Module::CoreList::version with $]
by betterworld (Curate) on Apr 24, 2009 at 10:27 UTC | |
by Anonymous Monk on Apr 24, 2009 at 10:54 UTC |