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.
 
 
 
 
 
 

16 line
248 B

  1. ((lambda ((:k1 (+ 1 2 3)))
  2. (assert (= k1 6))))
  3. ((lambda ((:k1 ()))
  4. (when k1
  5. (assert ()))
  6. (assert (= k1 ()))))
  7. (define (test)
  8. ((lambda ()
  9. (define (a)
  10. :ok)
  11. (define (b (:k (begin (break) (a))))
  12. k)
  13. (b))))