RosettaCodeData/Task/Inheritance-Single/Fortran/inheritance-single.f
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

18 lines
250 B
Forth

module anim
type animal
end type animal
type, extends(animal) :: dog
end type dog
type, extends(animal) :: cat
end type cat
type, extends(dog) :: lab
end type lab
type, extends(dog) :: collie
end type collie
end module anim