RosettaCodeData/Task/Inheritance-Single/F-Sharp/inheritance-single.fs
2023-07-01 13:44:08 -04:00

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()