Files
kotlin-fork/js/js.translator/testFiles/simple/cases/positiveAndNegativeNumbers.kt
T
2012-02-27 21:55:58 +04:00

8 lines
90 B
Kotlin

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