fpc/tests/test/units/dos/hello.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

13 lines
266 B
ObjectPascal

{ 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.