fpc/docs/refex/ex8.pp
2005-02-14 17:13:06 +00:00

9 lines
136 B
ObjectPascal

Program Example8;
{ Program to demonstrate the Chr function. }
begin
Write (chr(10),chr(13)); { The same effect as Writeln; }
end.