tw4136.pp 104 B

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