Files
jak-project/test/goalc/source_templates/control-statements/inline-with-block-4.static.gc
T
water111 27f0a7ca44 [Decompiler] Begin expression conversion, rearrange tests (#209)
* refactor tests and analysis passes

* identity test working

* combine test categories with only a few cases

* more fixes
2021-01-23 16:32:56 -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)))