You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1535 8e941d3f-bd1b-0410-a28a-d453659cc2b4
14 lines
159 B
ObjectPascal
Executable File
14 lines
159 B
ObjectPascal
Executable File
#!/usr/bin/env instantfpc
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses SysUtils;
|
|
|
|
var i: integer;
|
|
begin
|
|
i:=StrToInt(ParamStr(1));
|
|
writeln('exit code: ',i);
|
|
Halt(i);
|
|
end.
|
|
|