...
/Looping Directives: The C-style for Loop
Looping Directives: The C-style for Loop
Let's learn about the C-style for loop in Perl.
We'll cover the following...
Syntax of C-style for
loop
The C-style for
loop requires us to manage the conditions of iteration:
Press + to interact
for (my $i = 0; $i <= 10; $i += 2) {say "$i * $i = ", $i * $i;}
We must explicitly assign to an iteration variable in the looping construct, since this ...