``` hashMapOf<Int, Int>().apply { mapOf(...
# getting-started
c
Copy code
hashMapOf<Int, Int>().apply {
    mapOf(1 to 2, 2 to 4).forEach { e -> this[e.key * 3] = e.value * 4}
}
{6=16, 3=8}