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

10 lines
122 B
Scheme

;-*-Scheme-*-
(test-setup 5 #f)
;; test the #when and #unless macros
(#unless (< 1 2) (/ 0 0))
(#when (< 1 2) 5)