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

7 lines
176 B
Text
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
interface Fruit guards FruitStamp {}
def apple implements FruitStamp {}
def banana implements FruitStamp {}
def cherry implements FruitStamp {}
def eat(fruit :Fruit) { ... }