Kotlin New Dictionary

val dictionary = mapOf("key" to 1, "anotherKey" to 2)

println(dictionary) // {key=1, anotherKey=2}
Attractive Albatross