| I've never seen anyone bring this up before, but it's distracting me at the moment (while I browse through arc.arc instead of sleeping): (def recstring (test s (o start 0))
(let n (len s)
((afn (i)
(and (< i (len s)) ;shouldn't (len s) be n?
(or (test i)
(self (+ i 1)))))
start)))
|