Go to the first, previous, next, last section, table of contents.

Assignment Statements

Sets var to the value of expression. var must be a writable designator (generally, a variable or non-READONLY procedure parameter).

These are shortcuts for x := x + n and x := x - n, respectively. If omitted, n defaults to 1. x must be an ordinal value (INTEGER, CHAR, or enumerated value). n must be an integer expression.


Example


Go to the first, previous, next, last section, table of contents.