mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
10 lines
178 B
Plaintext
Vendored
10 lines
178 B
Plaintext
Vendored
// Interface: to be implemented
|
|
impl interface Interface {
|
|
fun foo(param: String): Int
|
|
|
|
fun String.bar(y: Double): Boolean
|
|
|
|
val isGood: Boolean
|
|
|
|
var status: Int
|
|
} |