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