3 lines
95 B
Text
3 lines
95 B
Text
|
|
let collection = vec![1, 2, 3, 4, 5];
|
||
|
|
collection.iter().for_each(|elem| println!("{}", elem));
|