Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
3
Task/Inheritance-Single/Haxe/inheritance-single-1.haxe
Normal file
3
Task/Inheritance-Single/Haxe/inheritance-single-1.haxe
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
class Animal {
|
||||
// ...
|
||||
}
|
||||
3
Task/Inheritance-Single/Haxe/inheritance-single-2.haxe
Normal file
3
Task/Inheritance-Single/Haxe/inheritance-single-2.haxe
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
class Cat extends Animal {
|
||||
// ...
|
||||
}
|
||||
3
Task/Inheritance-Single/Haxe/inheritance-single-3.haxe
Normal file
3
Task/Inheritance-Single/Haxe/inheritance-single-3.haxe
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
class Dog extends Animal {
|
||||
// ...
|
||||
}
|
||||
3
Task/Inheritance-Single/Haxe/inheritance-single-4.haxe
Normal file
3
Task/Inheritance-Single/Haxe/inheritance-single-4.haxe
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
class Lab extends Dog {
|
||||
// ...
|
||||
}
|
||||
3
Task/Inheritance-Single/Haxe/inheritance-single-5.haxe
Normal file
3
Task/Inheritance-Single/Haxe/inheritance-single-5.haxe
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
class Collie extends Dog {
|
||||
// ...
|
||||
}
|
||||
14
Task/Inheritance-Single/Haxe/inheritance-single-6.haxe
Normal file
14
Task/Inheritance-Single/Haxe/inheritance-single-6.haxe
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
class Animal ()
|
||||
end
|
||||
|
||||
class Dog : Animal ()
|
||||
end
|
||||
|
||||
class Cat : Animal ()
|
||||
end
|
||||
|
||||
class Lab : Dog ()
|
||||
end
|
||||
|
||||
class Collie : Dog ()
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue