025771460c
^KT-61259
16 lines
245 B
Kotlin
Vendored
16 lines
245 B
Kotlin
Vendored
package funinterfaces
|
|
|
|
fun interface FunInterface {
|
|
fun run(): Int
|
|
}
|
|
|
|
fun getObject(): FunInterface {
|
|
return object : FunInterface {
|
|
override fun run() = 1
|
|
}
|
|
}
|
|
|
|
fun getLambda(): FunInterface {
|
|
return FunInterface { 2 }
|
|
}
|