mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-06 15:46:34 +02:00
9 lines
126 B
ObjectPascal
9 lines
126 B
ObjectPascal
#!/usr/bin/env instantfpc
|
|
{$mode objfpc}{$H+}
|
|
var
|
|
i: Integer;
|
|
begin
|
|
for i:=0 to ParamCount do writeln(ParamStr(i));
|
|
end.
|
|
|