in reply to Re: Re: Re: Modules included more than once
in thread Modules included more than once

It's probably cause he's doing stuff he shouldn't be doing.
perl -Mstrict -w -MCGI -MCGI=*table -e 1 perl -Mstrict -w -MCGI::Carp -MCarp -e 1
The Carp does it cause has to perform magic. That is why you should use warnings;
perl -Mstrict -Mwarnings -MCGI::Carp -MCarp -e 1

____________________________________________________
** The Third rule of perl club is a statement of fact: pod is sexy.