Previous: Str procedure To the Table of Content Next: Swap function

- 4.62.2.86 -
Standard Units
System Unit
System Unit Procedures and Functions

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: Str procedure To the Table of Content Next: Swap function
Str procedure Table of Content Swap function

- 4.62.2.86 -