neutron has asked for the wisdom of the Perl Monks concerning the following question:
Any ideas what's wrong with this? Thanks!#!perl use warnings; use strict; use Module::CoreList; my %modules = %{ $Module::CoreList::version{ 5.008 } }; while( %modules ) { if( keys %modules =~ /cgi/i ) { print "Found one!\n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CoreList stuff
by moritz (Cardinal) on Feb 01, 2009 at 22:05 UTC | |
|
Re: CoreList stuff
by doom (Deacon) on Feb 01, 2009 at 22:02 UTC | |
by doom (Deacon) on Feb 01, 2009 at 22:30 UTC | |
by Anonymous Monk on Feb 01, 2009 at 23:07 UTC | |
|
Re: CoreList stuff
by toolic (Bishop) on Feb 01, 2009 at 22:09 UTC |