RosettaCodeData/Task/Enumerations/E/enumerations-2.e
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07: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) { ... }