> -----Original Message-----
> From: Robert "Beau" Link [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 30, 2002 8:27 PM
> To: [EMAIL PROTECTED]
> Subject: using strict and -w
> 
> ... And where might I have found that answer within 
> perldoc?  I tried > perldoc -q strict and got "No documentation for 
> perl FAQ keyword 'strict' found."  All pointers appreciated.

perldoc strict

In general, if you see "use foo", or "no foo", the docs can be 
found with "perldoc foo":

   use strict;                perldoc strict
   no warnings 'undefined';   perldoc warnings
   use constant PI => 3.14;   perldoc constanct

Same for modules:

   use CGI qw(:standard);     perldoc CGI
   use IO::Socket;            perldoc IO::Socket

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

Reply via email to