Rust Programming Language Pros and Cons

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Do you like Rust?


  • Total voters
    4
My favorite feature is probably the mix of how C++ and Java handle memory management/safety.

Edit: I'm still learning this language, and I'm not really sure what to write before I decide to go into game dev. Got any ideas? :P
 
Last edited:
  • Like
Reactions: Strikingwolf
Oh and BTW closures...just closures. I have passed functions before, but these are great...just great
 
Rust is a great language because it is a systems language in that it gives you the level of flexibility and control you get with a language like C or C++, but at the same time it is safe by default. Java is not a safe language, because it doesn't stop you from writing mistakes in the first place. Rust's type system with lifetimes and borrowing allows for a level of compile time safety that guarantees your code is memory safe, prevents leaks without using a GC, and eliminates runtime checks.