test2.pas 365 B

1234567891011121314151617181920212223242526272829303132
  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. var
  12. TEST2_X : real;
  13. implementation
  14. function IsOdd(X: integer): boolean;
  15. var Z: byte;
  16. begin
  17. Z:=0;
  18. X:=Z*X*Test8087;
  19. IsOdd:=(X mod 2)=1;
  20. end;
  21. procedure static;
  22. begin
  23. end;
  24. END.