test2.pas 341 B

1234567891011121314151617181920212223242526272829
  1. {$L+}
  2. unit Test2;
  3. interface
  4. type
  5. PRecord = ^TRecord;
  6. TRecord = record
  7. Field1: longint;
  8. Next : PRecord;
  9. end;
  10. function IsOdd(X: integer): boolean;
  11. implementation
  12. function IsOdd(X: integer): boolean;
  13. var Z: byte;
  14. begin
  15. Z:=0;
  16. X:=Z*X*Test8087;
  17. IsOdd:=(X mod 2)=1;
  18. end;
  19. procedure static;
  20. begin
  21. end;
  22. END.