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

10 lines
120 B
Kotlin
Vendored

package foo
fun box(): String {
val a = 2;
val b = 3;
var c = 4;
return if (a < c) "OK" else "fail"
}