RosettaCodeData/Task/Arrays/Rust/arrays-2.rust
2023-07-01 13:44:08 -04:00

5 lines
57 B
Text

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