1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-16 10:19:55 +00:00
janet/examples/iterate-fiber.janet
Calvin Rose 4355420994 Remove function eachy.
Instead use `each`.
2021-01-03 16:19:23 -06:00

20 lines
378 B
Clojure

(def f
(coro
(for i 0 10
(yield (string "yield " i))
(os/sleep 0))))
(print "simple yielding")
(each item f (print "got: " item ", now " (fiber/status f)))
(def f
(coro
(for i 0 10
(yield (string "yield " i))
(ev/sleep 0))))
(print "complex yielding")
(each item f (print "got: " item ", now " (fiber/status f)))
(print (fiber/status f))