mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-17 11:21:42 +01:00
17 lines
181 B
ObjectPascal
17 lines
181 B
ObjectPascal
{ %INTERACTIVE }
|
|
|
|
program test_crt;
|
|
|
|
uses
|
|
crt;
|
|
|
|
var
|
|
ch : char;
|
|
|
|
begin
|
|
Write('Press Ctrl-C to test :');
|
|
Read(ch);
|
|
if ch=#3 then
|
|
Writeln('It works correctly');
|
|
end.
|