'#!/usr/bin/perl -w ' tells the perl command to turn on extra warnings with the -w option.
#!/usr/bin/perl -w $i = 0; until ($i >= 10) { print "Iteration $i.\n"; $i++; }