+ test file for tdos

This commit is contained in:
carl 2001-12-10 02:25:33 +00:00
parent b7285e1095
commit 3c2336b435

View File

@ -0,0 +1,20 @@
{ 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.
{
$Log$
Revision 1.1 2001-12-10 02:25:33 carl
+ test file for tdos
}