Comments by "Anony Mousse" (@anon_y_mousse) on "the TRUTH about this NEW Language (BETTER Than Rust and C++?)" video.
-
6
-
2
-
1
-
@linkernick5379 Rust doesn't solve the problem of cross-platform problems. They've explicitly stated a minimum CPU that it'll run on for x86 machines which means it won't run on half the desktops I have and then they target SBC's. It's just stupid is what it is and they're merely slapping people in the face. C is far more cross-platform capable, even if it requires you to use a configure script to make it easy, it'll still run on really old platforms that Rust gives the middle finger to. And nothing is more interoperable with C than C. As for safe {insert X}, that's BS. It makes you work harder to be unsafe, making it an even more intentional decision to be so, but it doesn't make you safe as a blanket statement. You have always had the option in C, and intelligent programmers have taken that option, to write libraries of code that you reuse which abstract a lot of things making future code that you write as safe as can be. Who in their right mind rewrites linked list code whenever they need it in a project instead of just using the code they already wrote, if you even use a simple linked list anyway. And finally, defining the tooling that every programmer will use to interact with your language is a really stupid idea. It creates a vague understanding of the underlying way in which the code will work and makes it impossible to replace in the future. Using LLVM as they do is a pretty cheap way to push out a new language, but that further has them depending on a separate project while they're attempting to define the tooling and they still restrict it.
1