chibi-scheme/lib/scheme/misc-macros.scm
Alex Shinn bd32131b9d The big renaming to define-library in .sld, make it possible to pass
other version numbers than 7 to `scheme-report-environment`, providing
initial (scheme base) library.
2011-10-02 17:16:05 +09:00

10 lines
198 B
Scheme

(define-syntax when
(syntax-rules ()
((when test . body)
(if test (begin . body)))))
(define-syntax unless
(syntax-rules ()
((unless test . body)
(when (not test) . body))))