$ perl -w my_program
Or, if you always want warnings, you may request them on the
#! line:
#!/usr/bin/perl -w
That works even on non-Unix systems, where it's traditional to
write something like this, since the path to Perl doesn't
generally matter:
#!perl -w
Now, Perl will warn you if you use '12fred34' as
if it were a number:
Argument "12fred34" isn't numeric