Template:Computer Programming/Control/7

Loops edit

Loops allow you to have a set of statements repeated over and over again.

Endless loop edit

The endless loop is a loop which never ends and the statements inside are repeated forever. The term, endless loop, is a relative term; if the running program is forcibly terminated by some means beyond the control of the program, then an endless loop will indeed end.