And has there been any word on whether or not the following syntax will be added?
val a = 1, b = 2, c = 5
val d = "D", e = "e", f = "etc"
Right now it's kind of possible as:
val (a, b, c) = listOf(1, 2, 5)
val (d, e, f) = listOf("D", "e", "etc")
But I think the former is clearer