6 lines
137 B
Text
6 lines
137 B
Text
abstract type Animal end
|
|
abstract type Dog <: Animal end
|
|
abstract type Cat <: Animal end
|
|
|
|
struct Lab <: Dog end
|
|
struct Collie <: Dog end
|