Data update
This commit is contained in:
parent
35bcdeebf8
commit
74c69a0df6
2427 changed files with 31826 additions and 3468 deletions
|
|
@ -1,3 +0,0 @@
|
|||
class
|
||||
ANIMAL
|
||||
end
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
class
|
||||
DOG
|
||||
inherit
|
||||
ANIMAL
|
||||
end
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
class
|
||||
CAT
|
||||
inherit
|
||||
ANIMAL
|
||||
end
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
class
|
||||
LAB
|
||||
inherit
|
||||
DOG
|
||||
end
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
class
|
||||
COLLIE
|
||||
inherit
|
||||
DOG
|
||||
end
|
||||
23
Task/Inheritance-Single/Eiffel/inheritance-single.e
Normal file
23
Task/Inheritance-Single/Eiffel/inheritance-single.e
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
class
|
||||
ANIMAL
|
||||
end
|
||||
class
|
||||
DOG
|
||||
inherit
|
||||
ANIMAL
|
||||
end
|
||||
class
|
||||
CAT
|
||||
inherit
|
||||
ANIMAL
|
||||
end
|
||||
class
|
||||
LAB
|
||||
inherit
|
||||
DOG
|
||||
end
|
||||
class
|
||||
COLLIE
|
||||
inherit
|
||||
DOG
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue