`produce` is also lazy in the same way as `buildSe...
# coroutines
e
produce
is also lazy in the same way as
buildSequence
. You can use it almost as a drop-in replacement:
buildSequence
->
produce
,
yield
->
send
.