15 lines
202 B
FSharp
15 lines
202 B
FSharp
type Animal() =
|
|
class // explicit syntax needed for empty class
|
|
end
|
|
|
|
type Dog() =
|
|
inherit Animal()
|
|
|
|
type Lab() =
|
|
inherit Dog()
|
|
|
|
type Collie() =
|
|
inherit Dog()
|
|
|
|
type Cat() =
|
|
inherit Animal()
|