Glossary (Version 8.4)

A repetition of a process or set of instructions in computer programming where each repeated cycle builds on a previous (see repeatstatement). Typically this uses a FOR loop command with a counter such as the example below to add the numbers from 1 to 9.

for number = 1 to 9

sum = sum + number