bldc/benchmarks/dec_cnt2.lisp

6 lines
92 B
Common Lisp

(define dec-cnt2 (lambda (x)
(match x (0 0) (_ (dec-cnt2 (- x 1))))
))
(dec-cnt2 100000)