quote:

Gurus,

I thought these were interchangeable, but unless I'm doing something 
really D-U-M, they're not.

        use Time::Local;
        use Time::localtime;

That works. This doesn't:

        use Time qw( Local localtime );

I get "Can't locate Time.pm in @INC ... blah blah blah" for an error 
message and the compile breaks.  So, what am I doing wrong that this won't 

work? All I'm trying to do is eliminate the one "use" line...

TIA,

Deane

:end-quote

seems to me you want a way to do:

use a,b,c,d;

instead of:

use a;
use b;
use c;
use d;

unfortunately i dont think that exists yet,. you could try emailing larry 
and asking for it. or cpan.

they might decide to add it. after all, programmers are lazy, hence all 
the perl shortcuts.....

-Josh
_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to