Concept Flow - Using for directive
Start
Initialize loop variable
Check loop condition
| Yes
Execute loop body
Update loop variable
Check loop condition
No
End loop
The for directive starts by setting a variable, checks a condition, runs the loop body if true, updates the variable, and repeats until the condition is false.