0b647ac358
Split testData into 'classes' and 'expressions'.
3 lines
110 B
Kotlin
Vendored
3 lines
110 B
Kotlin
Vendored
val test1 = arrayOf<String>()
|
|
val test2 = arrayOf("1", "2", "3")
|
|
val test3 = arrayOf("0", *test2, *test1, "4") |