Rust, week 2...
The continued, albeit slow, adventures of someone who's been coding for 37 years and is now learning Rust... Things I like about Rust, pt2... std::option::Option - no more Null... force error check at point of creation Inbuilt testing framework RustFmt - code formatting ! Everything is on Github... and I mean everything... fantastic ! Safety is not sacrificed for simplicity. Yes, Rust is a complex language, but that's because decisions have been made which puts safety and control first rather than convenience. The team provide editor integration plugins... including the mighty VIM ! Things I don't like about Rust Opening curly brackets on the right... argh ! I know it's just convention, but argh ! There's something quite exciting about the Rust community... the deeper I delve into the language and how the project is organised the more excited I get. One major problem with older languages like C and C++ is that the ecosystem around how you develop sof...