mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-06 03:09:39 +01: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.
|
|
|