mirror of
https://github.com/open-goal/jak-project
synced 2026-07-01 20:20:35 -04:00
8775840265
* decompile some stuff * fix typo * playing around with trigonometry * more progress on trig * more trig * comments and small fixes * finish trig
4 lines
146 B
Common Lisp
4 lines
146 B
Common Lisp
(let ((test-array (new 'static 'array int16 10 1 2 -10)))
|
|
(format #t "~d ~d ~d~%" (-> test-array 0) (-> test-array 1) (-> test-array 2))
|
|
0
|
|
) |