Suppose I have a module:

package MyConfig;

use strict;
use warnings;

use CGI qw(:standard); # or user_name or one then other if fail?
use DBI;

use base 'Exporter';
use Carp;
....

Now in the script I have 

#!/usr/bin/perl

use MyConfig;
..

Will use strict and warnings still be in effect for the script?
Will I be able to use CGI and DBI and Carp as if I had use statements for 
them in my script or do I need to have use Module in the script before or 
after the use MyConfig; ?

This is last post for me today I swear!!!

;p

Thanks

Dan

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to