LOOP is a programming language designed by Uwe Schöning, along with GOTO and WHILE. The only operations supported in the language are assignment, addition and looping.
Contents
The key property of the LOOP language is that the functions it can compute are exactly the primitive recursive functions.
Features
Each primitive recursive function is LOOP-computable and vice versa.
In contrast to GOTO programs and WHILE programs, LOOP programs always terminate. Therefore, the set of functions computable by LOOP-programs is a proper subset of computable functions (and thus a subset of the computable by WHILE and GOTO program functions).
An example of a total computable function that is not LOOP computable is the Ackermann function.
Syntax
LOOP-programs consist of the symbols LOOP
, DO
, END
, :=
, +
, -
and ;
as well as any number of variables and constants. LOOP-programs have the following syntax in modified Backus–Naur form:
Here,
Semantics
If P is a LOOP program, P is equivalent to a function
A statement of the form
x0 := x1 + cmeans the value of the constant
A statement of the form
x0 := x1 - cmeans the value of the constant
Variables are allowed to be simultaneously on the left and right side of an assignment. A statement of the form:
x1: = x1 + cfor example, adds the value of the constant
A statement of the form
P1; P2represents the sequential execution of sub-programs
A statement of the form
LOOP x DO P ENDmeans the repeated execution of the partial program LOOP
statement. This allows for branches in LOOP programs, where the conditional execution of a partial program depends on whether a variable has value zero or one.
Addition
In the following program, the variable
LOOP
statement. This program can be used as a subroutine in other LOOP programs. The LOOP syntax can be extended with the following statement, equivalent to calling the above as a subroutine:
Multiplication
The following LOOP program sets the value of the variable
This multiplication program uses the syntax introduced by the addition subroutine from the previous example. The multiplication is performed here by adding the value of