DEV Community

Discussion on: Which Programming Languages Have You Explored Lately?

Collapse
 
baenencalin profile image
Calin Baenen

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. 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.