1 package demo 2 3 /** 4 * You can [eat] it or cut it into slices using [cutIntoPieces] 5 */ 6 interface Apple { eatnull7 fun eat() 8 9 fun cutIntoPieces(pieces: Int) 10 } 11