[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
Convert byte value to character value
Source position: systemh.inc line 475
function chr( |
b: Byte |
):Char; |
Chr returns the character which has ASCII value X.
None.
|
Return ordinal value of an ordinal type. |
|
|
Convert a numerical value to a string. |
Program Example8; { Program to demonstrate the Chr function. } begin Write (chr(10),chr(13)); { The same effect as Writeln; } end.