7 lines
92 B
Plaintext
7 lines
92 B
Plaintext
void main() {
|
|
var collection=[1,2,3,4,5];
|
|
for(var a in collection){
|
|
print(a);
|
|
}
|
|
}
|