Files
jak-project/test/goalc/source_templates/functions/inline-with-block-4.static.gc
T
2020-11-22 20:10:33 -05:00

15 lines
266 B
Common Lisp

(define format _format)
(defun even-odd-to-1-2 ((in int))
(declare (inline))
(if (= 0 (logand 1 in))
(let ((x 1.0))
(return-from #f 1.0)
)
123123.23
)
2.0
)
(format #t "~f~%" (+ (even-odd-to-1-2 11) (even-odd-to-1-2 12)))