cb6fb78bc3
Rename some Ant tests: "simple[...]" -> "simpleWithoutStdlib[...]" and "simpleWithStdlib[...]" -> "simple[...]"
13 lines
165 B
Kotlin
Vendored
13 lines
165 B
Kotlin
Vendored
package foo
|
|
|
|
var ok = "FAIL"
|
|
|
|
val hello = Pair("Hello", "World")
|
|
|
|
fun main() {
|
|
ok = "OK"
|
|
println(hello.first + " " + hello.second)
|
|
}
|
|
|
|
fun box(): String = ok
|