diff options
Diffstat (limited to 'tests/tailcall.lisp')
| -rw-r--r-- | tests/tailcall.lisp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/tailcall.lisp b/tests/tailcall.lisp index 1aa5e38..1b39fb0 100644 --- a/tests/tailcall.lisp +++ b/tests/tailcall.lisp @@ -6,6 +6,7 @@ (defun is-odd (x) (is-even (- x 1))) +(assert (is-even 100)) (assert (is-even 10)) (assert (is-even 0)) (assert (is-odd 1)) @@ -17,3 +18,4 @@ (progn (cnt-down (- x 1))))) +(cnt-down 100) |
