Context
The following code of infinite loops:
(defn ex13 [] (take 5 (run* [x] (listo (lcons `a (lcons `b (lcons `cx)))))))
Question:
Is this supposed to be the right behavior? (infinite loop?) On the other hand, code like:
(take 5 (range))
takes 5 elements and displays them.
user1311390
source share