5 lines
87 B
Kotlin
5 lines
87 B
Kotlin
object : Runnable() {
|
|
override public fun run() : Unit {
|
|
System.out?.println("Run")
|
|
}
|
|
} |