Did you know that in Rust, 'let _ = ...' and 'let _unused = ...' are NOT the same thing?
I didn't until today!

https://gaultier.github.io/blog/rust_underscore_vars.html

#rust

In Rust, `let _ = ...` and `let _unused = ...` are not the same

@pg Funnily, I kind of knew this before reading this 🤔

Maybe the "ignore" notation of just underscore is described somewhere in the teaching materials.