Hacker News new | ask | show | jobs
by goncalo-r 1419 days ago
I really like the way GoLang handles concurrency. Sometimes it might be a bit verbose to create wait groups and whatnot but I think it makes it pretty readable.

Is there any reason people prefer the async/await primitives?

1 comments

Async/Await makes your asynchronous code runs like synchronous code, synchronous code is more readable than asynchronous code. Your dont have to worry about goroutines execution order, communication, exceptions(leak, panic, deadlock). Besides, Async/Await can help your write less code.