tval4.pp 390 B

12345678910111213141516171819202122232425262728293031323334353637
  1. unit tval4;
  2. {$mode fpc}
  3. interface
  4. {$ifdef cpujvm}
  5. uses
  6. jdk15;
  7. {$macro on}
  8. {$define write:=JLSystem.fout.print}
  9. {$define writeln:=JLSystem.fout.println}
  10. {$endif}
  11. function TestAllval4 : boolean;
  12. implementation
  13. uses
  14. tvalc;
  15. type
  16. IntegerType = qword;
  17. {$i tval.inc}
  18. function TestAllval4 : boolean;
  19. begin
  20. Writeln('Test val for qword type');
  21. TestAllval4:=TestAll;
  22. end;
  23. end.