14 lines
196 B
Kotlin
14 lines
196 B
Kotlin
package kotlin.test.tests
|
|
|
|
import kotlin.test.*
|
|
import konan.test.*
|
|
|
|
@Test
|
|
fun test() {
|
|
println("test")
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
println("Custom main")
|
|
TestRunner.run(args)
|
|
} |