다른 언어들과 마찬가지로 코틀린도 key, value를 가지고 있는 map을 사용할 수 있다. fun maps() { val constants = mapOf("Pi" to 3.141, "e" to 2.718, "phi" to 1.618) println(constants) println(constants["e"]) println(constants.keys) println(constants.values) var s = "" for (entry in constants) { s += "${entry.key}=${entry.value}, " } println(s) s = "" for ((key, value) in constants) { s += "$key=$value, " } println(s) } fun mai..