⚠️ 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.

Interestingly I see only two loop variants: #[[Loops/Do-while]] #[[Loops/While]] The first loop construct tests a condition after execution of a block of statements to decide if to execute the block again. The second loop construct tests a condition before and will only execute a block of statements if the test is passed. A third loop construct could be to test a condition before and a condition after a block of statements.

''pseudo code''

while condition_before
   statements
until condition_after

The condition after will only be tested after the block of statements has been executed once. So I propose a new task: #[[Loops/While Until]] [[User:Dedalus|Dedalus]] ([[User talk:Dedalus|talk]]) 13:24, 30 March 2017 (UTC)