Warnings
- Warnings print this sort of thing out!
#!/usr/bin/perl use warnings; print "bob" + 58, "\n";
- or, via command line:
$ perl -w hello.pl
| CPU: Perl, Fall 2005 | Perl, Week 1: Intro to Perl, Scalars | #21 |
#!/usr/bin/perl use warnings; print "bob" + 58, "\n";
$ perl -w hello.pl
| Copyright © 2005 Ian Langworth |