val m = mutableMapOf(1 to "A", 2 to "B") // 可变 Map 可以修改 m.put(3, "C") m.put(4, "D") m.put(5, "E") m.forEach { _console.log(it) }