parent
69b7a2c6d1
commit
219bab5ed8
@ -1,8 +1,8 @@ |
|||||||
DEFINE:loop:(defun loop\ |
DEFINE:loop:(def loop (lambda (counter max)\ |
||||||
(all\ |
(all\ |
||||||
statement\ |
statement\ |
||||||
(cond (= $1 $2)\ |
(cond (= counter max)\ |
||||||
$1\ |
counter\ |
||||||
(loop (+ $1 1) $2))))\ |
(loop (+ counter 1) max)))))\ |
||||||
(loop start end)\ |
(loop start end)\ |
||||||
:start:end:statement |
:start:end:statement |
||||||
|
Loading…
Reference in new issue