DEV Community

Discussion on: Share your experiance with RUST Programming language

Collapse
 
ranjancse profile image
Ranjan Dailata

I haven't tried but who knows, in the future I might learn and work with it.

Observations - Rust programming seems to be an easy one if you are coming from a strong C, C++ background.

Learning curve is steep, it's not an easy one.

API development is ok, but why would you go with Rust?

Rust: Well-suited for low-level operations, performance-critical applications where speed is paramount (e.g., game development, real-time systems), and situations requiring precise control over resources.

The below quote is from rust-gentle-intro

The big difference from C and C++ is that Rust is safe by default; all memory accesses are checked. It is not possible to corrupt memory by accident.

Collapse
 
iamspathan profile image
Sohail Pathan

Thanks @ranjancse. Fortunately, I come from an era where the first programming language was C/C++ only.