Repository URL to install this package:
|
Version:
3.0.0 ▾
|
{ Test program to be used by tdos for testing exec }
{ command. }
var
i: integer;
Begin
WriteLn('Hello world. With parameters...');
for i:=0 to paramcount do
begin
WriteLn(ParamStr(i));
end;
RunError(213);
end.