RosettaCodeData/Task/Enumerations/E/enumerations-2.e

7 lines
176 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
interface Fruit guards FruitStamp {}
def apple implements FruitStamp {}
def banana implements FruitStamp {}
def cherry implements FruitStamp {}
def eat(fruit :Fruit) { ... }