I have a question relating to creating an IO Monad...
# arrow
h
I have a question relating to creating an IO Monad. What is the difference between these two ways of creating the IO Monad? Are they the same?
Copy code
IO.runAsync { ...  }

vs

IO.AsyncContext.runAsync { ... }