Mega Code Archive

 
Categories / Perl / Language Basics
 

#!usrbinperl -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++; }