mirror of
https://github.com/open-goal/jak-project
synced 2026-09-04 10:41:44 -04:00
8 lines
158 B
Common Lisp
8 lines
158 B
Common Lisp
(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)
|
|
)
|
|
0 |