6 lines
57 B
Text
6 lines
57 B
Text
|
|
let a = [1, 2, 3];
|
||
|
|
a.len();
|
||
|
|
for e in a.iter() {
|
||
|
|
e;
|
||
|
|
}
|