How async should have been
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
andawait
keywords sincepython3.5
.In this article, I would like to provide my opinion about this feature, think of alternatives, and provide a new solution.
Source: How async should have been, an article by Nikita Sobolev.