However, if you prefer C#-style `async { … }` and ...
# coroutines
e
However, if you prefer C#-style
async { … }
and
await(…)
you can always write the corresponding functions for yourself. None of that is reserved in any way. They are all just library functions anyone can write. You can even name the result of your
async
function a
Task
for a complete analogy.
👍 1