mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 20:33:49 +02:00
12 lines
248 B
ObjectPascal
12 lines
248 B
ObjectPascal
Program Example46;
|
|
|
|
{ Program to demonstrate the ParamCount and ParamStr functions. }
|
|
Var
|
|
I : Longint;
|
|
|
|
begin
|
|
Writeln (paramstr(0),' : Got ',ParamCount,' command-line parameters: ');
|
|
For i:=1 to ParamCount do
|
|
Writeln (ParamStr (i));
|
|
end.
|