Loop (computing)

From Wiki @ Karl Jones dot com
Revision as of 09:06, 9 September 2015 by Karl Jones (Talk | contribs) (Created page with "In computing, a '''loop''' is a sequence of statements which is specified once but which may be carried out several times in successio...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

In computing, a loop is a sequence of statements which is specified once but which may be carried out several times in succession.

(TO DO: expand, organize, cross-reference, illustrate.)

Description

The code "inside" the loop (the body of the loop, shown below as xxx) is obeyed a specified number of times, or once for each of a collection of items, or until some condition is met, or indefinitely.

In functional programming languages, such as Haskell and Scheme, loops can be expressed by using recursion or fixed point iteration rather than explicit looping constructs. Tail recursion is a special case of recursion which can be easily transformed to iteration.

Examples

(TO DO ...)

See also

External links