Files
kotlin-fork/backend.native/tests/runtime/basic/hello4.kt
T
2017-10-20 18:25:05 +03:00

9 lines
190 B
Kotlin

package runtime.basic.hello4
import kotlin.test.*
@Test fun runTest() {
val x = 2
println(if (x == 2) "Hello" else "Привет")
println(if (x == 3) "Bye" else "Пока")
}