jak-project/test/goalc/source_templates/variables/defglobalconstant-2.static.gc
2020-10-08 00:05:01 -04:00

8 lines
169 B
Common Lisp

(defmacro get-goos-by-name (name)
;; do the lookup in the goos global environment
(eval name)
)
(defglobalconstant my-constant 18)
(get-goos-by-name my-constant)