mirror of
https://github.com/open-goal/jak-project
synced 2026-09-13 05:05:48 -04:00
14 lines
209 B
Common Lisp
14 lines
209 B
Common Lisp
(defenum test-val-enum
|
|
(thing1 1)
|
|
(thing3 3)
|
|
(thing5 5)
|
|
)
|
|
|
|
(defmacro test-enum-vals ()
|
|
(let ((enum-list (get-enum-vals 'test-val-enum)))
|
|
`(quote ,enum-list)
|
|
)
|
|
)
|
|
|
|
(printl (test-enum-vals))
|
|
0 |