jak-project/test/goalc/source_templates/with_game/test-boxed-array-index.gc
2020-12-31 22:15:17 -05:00

6 lines
128 B
Common Lisp

(let ((arr (new 'global 'boxed-array int16 12))
(x 3))
;; 12 + 3 * 2 = 18
(format #t "~D~%" (&- (&-> arr 3) arr))
)