4 lines
87 B
Text
4 lines
87 B
Text
let collection = vec![1,2,3,4,5];
|
|
for elem in collection {
|
|
println!("{}", elem);
|
|
}
|