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

7 lines
110 B
Kotlin
Vendored

package foo
fun box(): String {
val b = -3
val c = +3
return if ((c - b) == 6) "OK" else "fail"
}