Files
jak-project/test/old_goal_tests/tests/test-float-function.gc
T
2020-08-22 22:32:18 -04:00

13 lines
202 B
Common Lisp

;-*-Scheme-*-
(test-setup 10.152 #f)
(defun float-testing-function ((x float) (y float))
(* x y (* x x))
)
(let ((x (float-testing-function (* 1.2 1.2) 3.4)))
(format #t "~,,3f~%" x)
)