Re: Upgraded to 5.8 problems

2002-08-03 Thread Greg Matheson
is 5.8.0? Presumably Time::HiRes is a 5.8.0 module. If not, can you run perl56? YOu can do unshift @INC to prepend paths to search for modules first. And what is a loadable object? I don't understand your problem either. -- Greg MathesonRather tha

Re: Perl programmer born and bred

2002-06-21 Thread Greg Matheson
wer is d), but Larry Wall doesn't seem to crack so many jokes nowadays. Perhaps he is older and wiser. Perhaps his role as God with the Apocalypses, he doesn't need it any more and can leave it to his Prophet, Damian Conway with the Exegeses. Conway's humor seems to be in th

Re: How to check installed Modules in perl

2002-04-17 Thread Greg Matheson
o sure of how a modules gets included in this list, because there are modules in the list which I don't believe I installed myself. -- Greg Matheson It was said a million monkeys on a million typewriters Chinmin College would eventually write the works of Shakespeare.

Re: Can Perl be used to develop test scenarios?

2001-08-03 Thread Greg Matheson
llowing that, the user populates different > fields (navigating between them via the tab key), then hits the enter > button. This is done several times. If this is like automatizing interactive processes, eg running a ftp job automatically, then you need to check out Expe

Re: How can you tell what version of a Perl Module you're using?

2001-07-31 Thread Greg Matheson
t;print $CGI::VERSION" [greg@localhost greg]$ perl '-MCGI qw(:all)' -le "print $CGI::VERSION" [greg@localhost greg]$ perl -MCGI=:all -le "print $CGI::VERSION" even though in a cgi script, the line: print $CGI::VERSION; printed out 3.02. Why is that? -- Greg M