RosettaCodeData/Task/Arrays/Rust/arrays-2.rust
2015-11-18 06:14:39 +00:00

5 lines
57 B
Text

let a = [1, 2, 3];
a.len();
for e in a.iter() {
e;
}