The two basic loops:
For each integer A from x to y do
For each integer B from x to y do
And there is a third one. It gives you absolute freedom to create as many loops as you want:
For each integer variable from x to y do
Before this third kind of loop existed, we could only nest loops two levels deep. But since type3 loops were added, we can now nest loops into infinite depths.








