78f4b9f1cd
^KT-51022 Fixed
9 lines
156 B
Kotlin
Vendored
9 lines
156 B
Kotlin
Vendored
fun main() {
|
|
val list = buildList {
|
|
add("one")
|
|
add("two")
|
|
val secondParameter = get(1)
|
|
println(secondParameter)
|
|
}
|
|
}
|