RosettaCodeData/Task/Enumerations/E/enumerations-2.e
2023-07-01 13:44:08 -04:00

6 lines
176 B
Text

interface Fruit guards FruitStamp {}
def apple implements FruitStamp {}
def banana implements FruitStamp {}
def cherry implements FruitStamp {}
def eat(fruit :Fruit) { ... }