How async should have been

13 · Nikita Sobolev · June 7, 2020, 9 p.m.
In the last few years async keyword and semantics made its way into many popular programming languages: JavaScript, Rust, C#, and many others languages that I don’t know or don’t use. Of course, Python also has async and await keywords since python3.5. In this article, I would love to provide my opinion about this feature, think of alternatives, and provide a new solution. Colours of functions When introducing async functions into the languages, we actually end up with a split world. Now, one fu...