7 lines
114 B
Kotlin
Vendored
7 lines
114 B
Kotlin
Vendored
// FULL_JDK
|
|
// WITH_RUNTIME
|
|
|
|
fun test1() {
|
|
val hello = Runnable { println("Hello, world!") }
|
|
hello.run()
|
|
} |