6 lines
69 B
Text
6 lines
69 B
Text
|
|
let list = [1, 22, 3, 24, 35, 6];
|
||
|
|
|
||
|
|
for(i in list) {
|
||
|
|
println(i);
|
||
|
|
}
|