Dictionary of Computer and Internet Terms: repeat
repeat
keyword used to define one kind of loop in Pascal. The word REPEAT marks the beginning of the loop, and the word UNTIL marks the end. Here is an example:
The computer always executes the loop at least once because it does not check to see whether the stopping condition is true until after it has executed the loop. Contrast while.

