control.scm 306 B

1234567891011121314
  1. ; Part of Scheme 48 1.9. See file COPYING for notices and license.
  2. ; Authors: Robert Ransom
  3. (define-syntax when
  4. (syntax-rules ()
  5. ((when expr body ...)
  6. (if expr (begin body ...)))))
  7. (define-syntax unless
  8. (syntax-rules ()
  9. ((unless expr body ...)
  10. (if (not expr) (begin body ...)))))