mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-24 09:56:02 +02:00
8 lines
106 B
ObjectPascal
Executable File
8 lines
106 B
ObjectPascal
Executable File
#!/usr/bin/env instantfpc
|
|
var
|
|
i: Integer;
|
|
begin
|
|
for i:=0 to ParamCount do writeln(ParamStr(i));
|
|
end.
|
|
|