DEV Community

Discussion on: Rust looks awesome

Collapse
 
peterwarrington profile image
Peter Warrington

Exactly, it forces you to not do stupid stuff that can bite back in the future. Also I love how it seperates unsafe memory stuff from safe stuff based on a keyword. You will never do anything unsafe unless you explicitly tell it too.

Collapse
 
ivan profile image
Ivan Dlugos • Edited

That's precisely what I prefer. More diligence during development, less time spent debugging obscure errors.