mirror of
https://github.com/open-goal/jak-project
synced 2026-05-30 17:06:23 -04:00
c9b53d51ff
* check on windows * fix windows build * version test * clean up - will it work on windows * fix formatting
7 lines
214 B
Common Lisp
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 |