mirror of
https://github.com/vapaamies/KolibriOS.git
synced 2024-11-09 17:50:30 +01:00
17 lines
185 B
ObjectPascal
17 lines
185 B
ObjectPascal
program Echo;
|
|
|
|
uses
|
|
CRT;
|
|
|
|
var
|
|
S: ShortString;
|
|
begin
|
|
InitConsole('Echo');
|
|
repeat
|
|
Write('> ');
|
|
ReadLn(S);
|
|
if Length(S) <> 0 then
|
|
WriteLn(S);
|
|
until False;
|
|
end.
|