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

7 lines
176 B
Plaintext

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