http://qs321.pair.com?node_id=178454


in reply to Re: What namespace is CGI:ReadParse() using?
in thread What namespace is CGI:ReadParse() using?

So, the hash is in the main namespace? And what does one do to make code which uses it strict-proof -- I'm missing something obvious, aren't I?
--
($_='jjjuuusssttt annootthheer pppeeerrrlll haaaccckkeer')=~y/a-z//s;print;

Replies are listed 'Best First'.
Re^3: What namespace is CGI:ReadParse() using?
by Aristotle (Chancellor) on Jul 01, 2002 at 13:14 UTC
    The bog standard our %in; in main - or if you're using an older Perl, use vars qw(%in);

    Makeshifts last the longest.