#for (initialization; expression; continue) {# # ...#}#!/usr/bin/perl -wfor ($i = 0; $i < 10; $i++) { print "Iteration $i.\n";}