Repeat loop
Topics referred to by the same term
From Wikipedia, the free encyclopedia
Repeat loop may refer to:
- For loop – Commonly known as the
repeat (x) { ... }loop. - Do while loop – Known as the
repeat { ... } until (!CONDITION)loop. - Infinite loop – Known as the
repeat forever { ... }loop.