`forEachLine` is not an inline function so the con...
# coroutines
v
forEachLine
is not an inline function so the content of the lambda is not executed in within a coroutine body,
use
on the other hand is inline so you're still in the coroutine body
🙏 1