⚠️ Warning: This is a draft ⚠️

This means it might contain formatting issues, incorrect code, conceptual problems, or other severe issues.

If you want to help to improve and eventually enable this page, please fork RosettaGit's repository and open a merge request on GitHub.

[[Category:Basic language learning]] Loops are [[:Category:Control Structures|control structures]] that allow sections of code to be executed repeatedly according to the controlling conditions of the loop. There are two types of loops: iterative loops and [[:Category:Conditional loops|conditional loops]]

This category is about iterative loops. Iterative loop repeatedly execute a set of instructions as the iterator steps through a series of values. Types of iterative loops include [[Loops/For|forloop]]s and [[Loops/Foreach|foreach]] loops. Tasks in this category show how iterative loops can be used to accomplish repetitive tasks.

[[Category:Loops]] [[Category:Control Structures]] [[Category:Solutions by Programming Task]]