Files
kotlin-fork/js/js.translator/testData/simple/cases/comparison.kt
T
2014-03-11 20:04:00 +04:00

10 lines
101 B
Kotlin
Vendored

package foo
fun box(): Boolean {
val a = 2;
val b = 3;
var c = 4;
return (a < c)
}