Files
kotlin-fork/js/js.translator/testData/box/simple/ifElseAsExpression.kt
T
2016-09-29 12:00:43 +03:00

6 lines
89 B
Kotlin
Vendored

package foo
fun box(): String {
val a = 2;
return if (a == 2) "OK" else "fail"
}