You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 rivejä
127 B

  1. (define-macro (error)
  2. (assert t))
  3. (define-macro (test)
  4. `(begin
  5. (+ 1 1)
  6. (error)
  7. (+ 1 1)))
  8. (test)
  9. (assert t)