RosettaCodeData/Task/Inheritance-Single/Julia/inheritance-single.julia

7 lines
137 B
Text
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
abstract type Animal end
abstract type Dog <: Animal end
abstract type Cat <: Animal end
2014-01-17 05:32:22 +00:00
2018-06-22 20:57:24 +00:00
struct Lab <: Dog end
struct Collie <: Dog end