Table of Contents

Language - Loop (For, While) - (Break, Continue)

About

Repeating a set of actions until a certain condition (predicate) fails is the job of programming loops;

loops can take different forms, but they all satisfy this basic behavior.

A loop includes:

Each time the loop block executes, that’s called an iteration. See Design Pattern - (Iterator|Cursor)

The only practical difference between these loops is whether the conditional is tested:

Loop Control Statement

Infinite

See Infinite loop on the CPU