blob: 4b40da537f4057ddefc112ee454070827db5beca [file] [log] [blame]
void main() {
var collection=[1,2,3,4,5];
for(var a in collection){
print(a);
}
}