mirror of
https://github.com/open-goal/jak-project
synced 2026-05-23 15:02:01 -04:00
10 lines
183 B
Common Lisp
10 lines
183 B
Common Lisp
(define format _format)
|
|
|
|
(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 |