Hacker News new | ask | show | jobs
by KingOfCoders 1655 days ago
"The net effect of the all the above is that async and non async code is highly composable."

How does this differ from Rust (Or Typescript etc.) where we would use

  async f() -> i32 { }

  fn g() { f().wait() }
to block?