diff options
author | Leah Neukirchen <leah@vuxu.org> | 2022-11-03 20:06:54 +0100 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2022-11-03 20:06:54 +0100 |
commit | 7a469b8d057464a1953f6b02b36ea3d5626c42fa (patch) | |
tree | e267979a45342055dd0be8b247962e543a13c842 /tests | |
parent | eed472a7436d2029c30799274545243f0ccd725d (diff) | |
download | mew-7a469b8d057464a1953f6b02b36ea3d5626c42fa.tar.gz mew-7a469b8d057464a1953f6b02b36ea3d5626c42fa.tar.xz mew-7a469b8d057464a1953f6b02b36ea3d5626c42fa.zip |
make rep use the binding syntax of loc
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test.mew | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test.mew b/tests/test.mew index 03f67c7..7b6f463 100644 --- a/tests/test.mew +++ b/tests/test.mew @@ -167,7 +167,7 @@ (test 42 ((op* * 2 ... 3) 7))) (test-group "rep" - (test 42 (rep loop ((x 27) (y 5)) + (test 42 (rep loop (x 27 y 5) (if (> y 0) (loop (+ x y) (- y 1)) x)))) |