mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 21:43:47 +02:00
9 lines
137 B
ObjectPascal
9 lines
137 B
ObjectPascal
Program Example8;
|
|
|
|
{ Program to demonstrate the Chr function. }
|
|
|
|
begin
|
|
Write (chr(10),chr(13)); { The same effect as Writeln; }
|
|
end.
|
|
|