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

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

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