in reply to Re^2: perl typecasting
in thread perl typecasting
perl -w dubious_script.pl
You can also turn on warnings from within a script with the statement
BEGIN { $^W = 1; }
Without access to the strict module, you will have trouble using many, if not most, of the modules referred to by others. A very strange situation, as has been mentioned; are you sure it's not available?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: perl typecasting
by perl_junkie (Acolyte) on Feb 05, 2008 at 00:43 UTC |