70
Announcing Rust 1.80.0
(blog.rust-lang.org)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
It's really nice how you can now iterate over a boxed slice using
for x in &y
rather than being forced to usefor x in y.iter()
.