Skip to content

Instantly share code, notes, and snippets.

@orende
Created September 8, 2017 07:18
Show Gist options
  • Save orende/b5f90a6dd9246f5cc6a94d4d59c02e11 to your computer and use it in GitHub Desktop.
Save orende/b5f90a6dd9246f5cc6a94d4d59c02e11 to your computer and use it in GitHub Desktop.
val myMap = mapOf("alfa" to 123, "beta" to 456, "gamma" to 789)
for ((key, value) in myMap) {
print(“$key: $value”)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment