Comments by "Anony Mousse" (@anon_y_mousse) on "Why You SHOULDN'T Learn Rust" video.
-
@casperes0912 I strongly disagree with this entire statement. There are already so many libraries, both open and closed source, that are written in C and C++, and I don't have to take time to write boilerplate code to get them to work, which are great implementations of algorithms regardless of any standard library, and that Rust doesn't by default provide. So much of the code that's gone into Rust was a rewrite of something that already existed in either C or C++, and often not a complete reimplementation. You can write good code in just about any language, but some make it harder and as ugly as C++ is, I can still make it cleaner than Rust by a wide margin. Even C can be cleaner with ease. And if you have to call a block of your code unsafe to get any real work done, then the language obviously doesn't provide real safety guarantees, nor is it complete. And if anyone wants to claim that only a tiny block of unsafe code in a known location means you know where the failure point will be, come back when you've grown up and worked on a larger project.
1
-
1