It's very good.
It's like if C++ and Java had a baby, but better and more logical.
Rust comes with many great features, tuple structs (struct Person(String, u32)), enums with enum variants that are actually unique. (I.e. in struct Weekdays { Monday, /* ... */ }, Monday is not equal to 0, and thus not equal to January in struct Months { January, February, /* ... */ }. -- Also, you can store data in these variants if you wish.) And there is so much more.
Over all, I think it's the language I ultimately want to use, for real.
I may use other languages, but, like one would say as they get into a relationship, I think I've found the one.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Rust.
It's very good.
It's like if C++ and Java had a baby, but better and more logical.
Rust comes with many great features, tuple structs (
struct Person(String, u32)), enums with enum variants that are actually unique. (I.e. instruct Weekdays { Monday, /* ... */ },Mondayis not equal to0, and thus not equal toJanuaryinstruct Months { January, February, /* ... */ }. -- Also, you can store data in these variants if you wish.) And there is so much more.Over all, I think it's the language I ultimately want to use, for real.
I may use other languages, but, like one would say as they get into a relationship, I think I've found the one.