parent
4e4075117b
commit
6ceb57bf7d
@ -1,8 +1,6 @@ |
|||||||
DEFINE:loop:(def loop (lambda (counter max)\ |
(def loop (lambda (max i statement) |
||||||
(all\ |
(all |
||||||
statement\ |
statement |
||||||
(cond (= counter max)\ |
(cond (= i max) |
||||||
counter\ |
false |
||||||
(loop (+ counter 1) max)))))\ |
(loop max (- i 1) (id statement)))))) |
||||||
(loop start end)\ |
|
||||||
:start:end:statement |
|
Loading…
Reference in new issue