DEV Community

Discussion on: That's so Rusty: Mutables

Collapse
 
zzeroo profile image
Stefan Müller

Thank you for that wonderful article. Very nice.

But I still have one small note. Rust is very strict on many things. This is the source of its strength. One of these constraints is code formatting. It may not please every Rustacean, but everyone uses it. Please use the tool rustfmt for example with cargo fmt to reformat your code.

Collapse
 
imaculate3 profile image
Imaculate

Thanks for the feedback.