12 lines
183 B
Kotlin
Vendored
12 lines
183 B
Kotlin
Vendored
package beforeTest //package name should be less than imported one
|
|
|
|
import test.*
|
|
|
|
fun main() {
|
|
"O".switchMapOnce {
|
|
|
|
"K".switchMapOnce {
|
|
"OK"
|
|
}
|
|
}
|
|
} |