Files
kotlin-fork/compiler/testData/integration/ant/js/simpleWithStdlib/root1/foo.kt
T
2015-01-03 12:28:54 +03:00

13 lines
184 B
Kotlin

package foo
var ok = "FAIL"
val hello = Pair("Hello", "World")
fun main(args: Array<String>) {
ok = "OK"
println(hello.first + " " + hello.second)
}
fun box(): String = ok