Files
kotlin-fork/backend.native/tests/runtime/basic/hello3.kt
T
2017-10-20 18:25:05 +03:00

11 lines
207 B
Kotlin

package runtime.basic.hello3
import kotlin.test.*
@Test fun runTest() {
println(239)
// TODO: enable, once override by name is implemented.
println(true)
println(3.14159)
println('A')
}