orangy
fun joinList(collection: List<String>): String = StringBuilder().apply { append("{") collection.forEachIndexed { index, item -> append(", ", 0, index.coerceAtMost(1) * 2).append(item) } append("}") }.toString()