in reply to "Use strict" and "Use warnings" not working
use strict and warnings belong inside a Perl file. For example, you can create a file named "foo.pl", give it execute permissions, and add these 2 lines at the top:
See also: perlintrouse strict; use warnings;
Tutorials -> Getting Started with Perl
|
|---|