15 lines
335 B
Perl
15 lines
335 B
Perl
|
#Format: for (Expression1;Expression2;Expression3) {Block}
|
||
|
|
||
|
#The above format is equivalent to the following while statement:
|
||
|
|
||
|
#Expression1;
|
||
|
|
||
|
#while (Expression2)
|
||
|
# {Block; Expression3};
|
||
|
|
||
|
|
||
|
#!/usr/bin/perl
|
||
|
for ($i=0; $i<10; $i++){ # Initialize, test, and increment $i
|
||
|
print "$i ";
|
||
|
}
|
||
|
print "\nOut of the loop.\n";
|