On Wed, Oct 09, 2002 at 07:55:13PM -0700, stanley wrote: > #!/usr/bin/perl -w > > does it still throw an exception or do the warnings work?
-w on the shebang or command lines will work with any version of Perl. The use warnings pragma was added in 5.6.0, and this is why you're getting the error. Also, rather than asking us if it'll work, you should try it and see for yourself. Michael -- Administrator www.shoebox.net Programmer, System Administrator www.gallanttech.com -- -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
