summaryrefslogtreecommitdiff
path: root/tests/projects/pascal/console_with_c/src/main.pas
blob: ce34e4af90a45084d24b570d24223a38ca7b80e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
program hello;

function fib(n: Int64): Int64;
  cdecl; external 'foo';

var
  Value: Integer;
begin
  Value := 5;
  WriteLn(fib(Value));
end.