Массивы и коллекции / Словари

//Empty dictionary
val d1 = mapOf<IntString>()

//init with some data
val d2 = mapOf(
    1 to "one"2 to "two"
)

println("d1 is $d1")
println("d2 is $d2")