myMap = [1:"One", 2:"Two", 3:"Three"]
for(entry in myMap){
println entry.key + " " + entry.value
}
//Output:
//> One
//> Two
//> Three