blob: 48972a22d78556f2eafcda0c3375ae17b3da736d [file] [log] [blame]
package demo
/**
* You can [eat] it or cut it into slices using [cutIntoPieces]
*/
interface Apple {
fun eat()
fun cutIntoPieces(pieces: Int)
}