Previous: 4.67.2.85. Str procedure To the Table of Contents Next: 4.67.2.87. Swap function
4.67.2.85. Str procedure Table of Contents 4.67.2.87. Swap function

- 4.67.2.86. -
Table of Contents
4. Standard Units
4.67. System - Built-in routines
4.67.2. System Unit Procedures and Functions
4.67.2.86. Succ function


4.67.2.86. Succ function

Targets: MS-DOS, OS/2, Win32


System Unit

Returns the successor of the argument.

Declaration:
function Succ(X);
Remarks:
X is an expression of ordinal type.

Example:
 n := Succ(4);   // n = 5
 c := Succ('a'); // c = 'b'
See also:
Pred


Previous: 4.67.2.85. Str procedure To the Table of Contents Next: 4.67.2.87. Swap function
4.67.2.85. Str procedure Table of Contents 4.67.2.87. Swap function

- 4.67.2.86. -