Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

loop

You are here: irt.org | FOLDOC | loop

<programming> A sequence of instructions in a program that the processor repeats, either until some condition is met, or indefinitely (an infinite loop).

In an structured language (e.g. C, Pascal, BASIC, or Fortran), a loop is usually achieved with for loop, while loop or repeat loop constructs.

In other languages these constructs may be synthesised with a jump (assembly language) or a GOTO (early Fortran or BASIC).

To "loop through" a list means to process each element in turn. Hackers might use this for everyday iterative actions, e.g. "I've got to loop through my paper mail."

(2014-12-20)

Nearby terms: look and feel « Looking Glass « LOOKS « loop » loop combination » loop fusion » LOOPN

FOLDOC, Topics, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, ?, ALL

©2018 Martin Webb