jak-project/test/goalc/source_templates/with_game/test-bfloat.gc

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