Hacker News new | ask | show | jobs
by ogoffart 2456 days ago
> A language can't be "faster than C".

Why not? For instance, with current hardware, the good use of SIMD is critical. If you can't write vectorized code in (standard) C while you can do it in another Language, that would be a "faster" language. Same for other language features that enable faster code: Compile-time computations, better memory model with different pointer aliasing semantic, ...