Inheritance/Single: Difference between revisions

(added omit from ML/I)
Line 333:
=={{header|Fancy}}==
<lang fancy>
def class Animal {
# ...
}
 
def class Dog : Animal {
# ...
}
 
def class Cat : Animal {
# ...
}
 
def class Lab : Dog {
# ...
}
 
def class Collie : Dog {
# ...
}
Anonymous user