Files
hellorust/src/main.rs
2025-08-10 11:22:25 +02:00

6 lines
118 B
Rust

fn main() {
let vec = vec![1, 2, 3, 4];
for x in vec.iter() {
println!("vec contained {x:?}");
}
}