11 lines
156 B
Kotlin
11 lines
156 B
Kotlin
|
|
package demo
|
||
|
|
|
||
|
|
/**
|
||
|
|
* You can [eat] it or cut it into slices using [cutIntoPieces]
|
||
|
|
*/
|
||
|
|
interface Apple {
|
||
|
|
fun eat()
|
||
|
|
|
||
|
|
fun cutIntoPieces(pieces: Int)
|
||
|
|
}
|