611
Hexed by async
(fed.dyne.org)
Post funny things about programming here! (Or just rant about your favourite programming language.)
Await is usually there either because the performance doesn’t matter and the legibility is much higher with it, and/or because there are a series of asynchronous actions that depend on each other and await lets you write them as if they are sync because related to each other they are.