Browse Source

+ system unit tests : paramstr() + paramcount()

carl 24 years ago
parent
commit
e6a8217133
1 changed files with 17 additions and 0 deletions
  1. 17 0
      tests/test/units/system/tparam.pp

+ 17 - 0
tests/test/units/system/tparam.pp

@@ -0,0 +1,17 @@
+program tparam;
+
+var
+ i: integer;
+Begin
+  for i:=0 to ParamCount do
+   Begin
+     WriteLn(paramStr(i));
+   End;
+end.
+
+{
+ $Log$
+ Revision 1.1  2001-07-14 04:24:20  carl
+ + system unit tests : paramstr() + paramcount()
+
+}