val s = sequenceOf(1, 2, 3) val l = s.toList() // 不可变 List 无法修改 //l.add(4) //l.add(5) //l.add(6) l.forEach { _console.log(it) }