next up previous contents index
Next: Close Up: Functions and Procedures Previous: Chdir

Chr

   

Declaration:

Function Chr (X : byte) : Char;

Description:

Chr returns the character which has ASCII value X.

Errors:

None.

See also:

Ord,Str

Example
Program Example8;

{ Program to demonstrate the Chr function. }

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



Michael Van Canneyt
Thu Sep 10 14:02:43 CEST 1998