Echo example program added

This commit is contained in:
2020-06-21 00:05:01 +03:00
parent c44fe51b0b
commit 6ff32000ac
3 changed files with 23 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
program Echo;
uses
CRT;
var
S: ShortString;
begin
InitConsole('Echo');
repeat
Write('> ');
ReadLn(S);
if Length(S) <> 0 then
WriteLn(S);
until False;
end.

View File

@@ -0,0 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0Echo"