package Collections /** * https://www.tutorialspoint.com/kotlin/kotlin_collections.htm */ class Collections { fun main1() { val numbers = listOf("one", "two", "three", "four") println(numbers) } fun main2() { val numbers = mutableListOf("one", "two", "three", "four") numbers.add("five") println(numbers) } }