Live data from Hacker News

Ask HN: How do you learn Rust in 2023?

news.ycombinator.com

1–10 of 19 posts

Re: Ask HN: How do you learn Rust in 2023?

#8
Edited for grammar and format Read the 'Rust Book' as others suggested. Make small programs.

- Result and Option ( if let, match etc)

- understand references / mutable references

- ownership and borrowing.

- traits.

- learn generics

- Box, RC, Refcell,

- threads with Arc/ Mutexes.

- std::sync - channels(tx, rx)

- tokio (if you want to get better at an async runtime)

- take up an open source project and do it rust

Post reply on HN