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

7 lines
89 B
Kotlin

package foo
fun box(): Boolean {
val b = -3
val c = +3
return (c - b) == 6
}