mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 00:50:28 +02:00
+ system unit tests : paramstr() + paramcount()
This commit is contained in:
parent
e5add358e2
commit
e6a8217133
17
tests/test/units/system/tparam.pp
Normal file
17
tests/test/units/system/tparam.pp
Normal file
@ -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()
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user