Chr

Declaration:
Function Chr (X : byte) : Char;
Description:
Chr returns the character which has ASCII value X.
Errors:
None.
See also:
Ord (542), Str (580)

Listing: refex/ex8.pp


Program Example8;

{ Program to demonstrate the Chr function. }

begin
  Write (chr(10),chr(13)); { The same effect as Writeln; }
end.