SDK/Examples/Console/Echo/Echo.dpr

17 lines
185 B
ObjectPascal
Raw Normal View History

2020-06-20 23:05:01 +02:00
program Echo;
uses
CRT;
var
S: ShortString;
begin
InitConsole('Echo');
repeat
Write('> ');
ReadLn(S);
if Length(S) <> 0 then
WriteLn(S);
until False;
end.