jak-project/goal_src/test/test-conditional-compilation-1.gc
2020-09-07 13:28:16 -04:00

12 lines
146 B
Plaintext

;; test the use of #cond to evaluate goos expressions at compile time
(#cond
((> 2 (+ 2 1))
1
(invalid-code)
)
((< 2 (+ 1 2))
3
)
)