7 lines
137 B
Julia
7 lines
137 B
Julia
|
|
abstract type Animal end
|
||
|
|
abstract type Dog <: Animal end
|
||
|
|
abstract type Cat <: Animal end
|
||
|
|
|
||
|
|
struct Lab <: Dog end
|
||
|
|
struct Collie <: Dog end
|