diff options
| author | Mistivia <i@mistivia.com> | 2025-06-23 20:29:57 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-23 20:29:57 +0800 |
| commit | 15821fd796d3f1e1b14bbb4aa32715aab4f49c56 (patch) | |
| tree | 996f215d25d5897c3b666df4fdb48d198072b1d2 /tests/tailcall.lisp | |
| parent | 69e9065635b1c20fe0f973bdebeb2745171bace1 (diff) | |
add string functions
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) |
