@scherzog @lina A lot of C++ developer actually hate the language and refuse to use its modern features, but I would be shocked to hear that said by one who does use them. C++ is an evolving language that's trying more and more to leverage compile time safety assertions. Rust is more or less just an extreme application of the same concept: it's better if the compiler can catch your errors.
Aren't the kernel developers hostile to anything not C or asm? Linus really hates us C++ devs...
@crazyeddie @scherzog @lina
The worst part is that in benchmarks, Rust beats out C++ and is only very slightly slower than C (by 7%), but would probably be more secure and more reliable in practice.
It might also be faster than C in production since it can better optimize itself.