6
How do I improve on borrow checker skills?
(programming.dev)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
Learn Rust With Entirely Too Many Linked Lists is a great example of how references work (or don't work) in more complex situations. Might seem like a lot at first, but working through writing the code yourself and seeing the compiler's responses is a great help when learning Rust. It also doesn't hurt to read it once and then come back and read it again later, after you try writing some more programs.
Seems interesting, thanks!