RosettaCodeData/Task/Loops-Foreach/Rust/loops-foreach-1.rust

5 lines
87 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let collection = vec![1,2,3,4,5];
for elem in collection {
println!("{}", elem);
}