C couldn't keep that promise because C never made that promise! C had system-dependent implementations from the start. You were never promised that source code targeting execution on one platform would work as expected if targeted to another platform. Making truly platform-independent C code is arduous work requiring a lot of #ifdef/#ifndef and testing.
As author correctly says, C succeeded because "its abstractions align with how processors actually work [...] When you write x = y + z, there's no hidden complexity.".
And then they propose an async runtime with tons of complexity... "a state machine that runs on Linux via io_uring, Windows via IOCP, browsers via WebAssembly," - that's mountains of runtime code to present a model that is nowhere close to how programs actually work.
Now, there is nothing wrong with this in general, high-level languages are very useful. But then why try to tie this to C? It is yet another async-based language.
C couldn't keep that promise because C never made that promise! C had system-dependent implementations from the start. You were never promised that source code targeting execution on one platform would work as expected if targeted to another platform. Making truly platform-independent C code is arduous work requiring a lot of #ifdef/#ifndef and testing.
Yeah, it's a Java slogan: https://en.wikipedia.org/wiki/Write_once,_run_anywhere
As author correctly says, C succeeded because "its abstractions align with how processors actually work [...] When you write x = y + z, there's no hidden complexity.".
And then they propose an async runtime with tons of complexity... "a state machine that runs on Linux via io_uring, Windows via IOCP, browsers via WebAssembly," - that's mountains of runtime code to present a model that is nowhere close to how programs actually work.
Now, there is nothing wrong with this in general, high-level languages are very useful. But then why try to tie this to C? It is yet another async-based language.
Cosmopolitan C library would like to have a word with you then https://github.com/jart/cosmopolitan