bldc/tests/test_loop_while_1.lisp

7 lines
102 B
Common Lisp

(define n 0)
(check (= (loopwhile (<= n 10)
(define n (+ n 1)))
11))