Rust
- Now is a really good time to make friends with Rust
- "My Favorite Rust Function Signature"
- https://wiki.alopex.li/RustStarterKit2020
Language overviews/tutorials for beginners
- How I Start: Rust
- TL;DR Rust
- rustlings - "Small exercises to get you used to reading and writing Rust code"
- https://dhghomon.github.io/easy_rust/
- https://www.possiblerust.com/
From Hacker News: "A very low-effort way to learn good Rust patterns is to put
#![warn(clippy::all)]
at the top of your crate’s entrypoint. This enables Rust’s default linter. It’s a lot more friendly and focused on good design than you might expect, often suggesting more elegant alternatives. Plus, many of its suggestions can be applied automatically in an environment like VS Code + rust-analyzer plugin."