fun main() { val source = mutableListOf("core") val view: List<String> = source source += "jvm" println(view.joinToString(" | ")) }