mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 12:33:42 +02:00
14 lines
159 B
ObjectPascal
14 lines
159 B
ObjectPascal
#!/usr/bin/env instantfpc
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses SysUtils;
|
|
|
|
var i: integer;
|
|
begin
|
|
i:=StrToInt(ParamStr(1));
|
|
writeln('exit code: ',i);
|
|
Halt(i);
|
|
end.
|
|
|