Files
jak-project/test/old_goal_tests/tests/test-conditional-compilation.gc
T
2020-08-22 22:32:18 -04:00

16 lines
154 B
Scheme

;-*-Scheme-*-
(test-setup 3 #f)
;; test the use of #cond to evaluate goos expressions.
(#cond
((> 2 (+ 2 1))
1
)
((< 2 (+ 1 2))
3
)
)