Files
jak-project/goal_src/test/test-bfloat.gc
T
water111 c9b53d51ff Compiler Cleanup (Part 2) (#56)
* check on windows

* fix windows build

* version test

* clean up - will it work on windows

* fix formatting
2020-09-25 21:11:27 -04:00

7 lines
214 B
Common Lisp

(define hack-bfloat (new 'global 'bfloat))
(set! (-> hack-bfloat type) bfloat)
(set! (-> hack-bfloat data) 1.233)
(format #t "data ~f print ~A type ~A~%" (-> hack-bfloat data) hack-bfloat (-> hack-bfloat type))
0