12 lines
252 B
Plaintext
Vendored
12 lines
252 B
Plaintext
Vendored
interface Runnable {
|
|
fun run()
|
|
}
|
|
|
|
class A : Runnable {
|
|
fun foo() {
|
|
}
|
|
|
|
override fun run() {
|
|
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
|
}
|
|
} |