Browse Source

+ test file for tdos

carl 24 years ago
parent
commit
3c2336b435
1 changed files with 20 additions and 0 deletions
  1. 20 0
      tests/test/units/dos/hello.pp

+ 20 - 0
tests/test/units/dos/hello.pp

@@ -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
+
+}