run.scm 298 B

123456789101112131415
  1. (import test)
  2. (import define-macro)
  3. (test-group "anwser of the universe"
  4. (define-macro (answer x)
  5. `(define ,x 42))
  6. (answer a)
  7. (test-assert (= a 42)))
  8. (test-group "test-gensym"
  9. (define a 42)
  10. (define-macro (mac)
  11. (let ((a (gensym)))
  12. (define ,a 0)))
  13. (test-assert (= a 42)))