1 2 3 4 5 6 7 8 9 10 11
{$mode macpas} function f: longint; begin return 3; end; begin if f() <> 3 then halt(1); end.