|
|
|
|
|
by k_bx
1885 days ago
|
|
I don’t know how Swift works, but from my Haskell experience, if your language needs async/await —- it’s already failing. Everything is async in Haskell, so you don’t need to think about it, and cannot accidentally make a mistake by blocking your async thread by calling sync code from it. |
|
Then why does https://hackage.haskell.org/package/async exist?