mirror of
https://github.com/open-goal/jak-project
synced 2026-06-25 18:14:34 -04:00
9 lines
239 B
Common Lisp
9 lines
239 B
Common Lisp
(define format _format)
|
|
|
|
(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 |