Comment on My current views on Rust (the programming language) (2015)parentComments−steveklabnik5yThe compiler has gotten faster over the years; don't forget that rustup makes it easy to try out older compilers; if your code would have compiled on Rust 1.0, you can$ rustup install 1.0.0$ cargo +1.0.0 runto give it a shot!
Comments
The compiler has gotten faster over the years; don't forget that rustup makes it easy to try out older compilers; if your code would have compiled on Rust 1.0, you can
$ rustup install 1.0.0
$ cargo +1.0.0 run
to give it a shot!