Created
September 8, 2017 07:18
-
-
Save orende/b5f90a6dd9246f5cc6a94d4d59c02e11 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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