Files
kotlin-fork/backend.native/tests/runtime/basic/hello4.kt
T
2016-11-21 20:36:40 +03:00

5 lines
149 B
Kotlin

fun main(args : Array<String>) {
val x = 2
println(if (x == 2) "Hello" else "Привет")
println(if (x == 3) "Bye" else "Пока")
}