|
|
|
|
|
by knuthsat
1624 days ago
|
|
async, when looked at from the "writing code" perspective is horrible. it pollutes every function with async annotation. it allows you to quickly write the code imperatively by just annotating a function and using the async function inside it. it results in code that is massively polluted with async when at most places you never had to use it at all (if you just restructured the code). having async be as verbose as possible would enforce people to not use it as much and to structure their code to have async bits nicely separated from non-async bits. |
|