jak-project/test/goalc/source_templates/with_game/test-static-array.gc
water111 8775840265
[Decomp] Decompile engine math library types (#272)
* decompile some stuff

* fix typo

* playing around with trigonometry

* more progress on trig

* more trig

* comments and small fixes

* finish trig
2021-02-20 11:42:46 -05:00

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
)