11 lines
207 B
Kotlin
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')
|
|
} |