Data update
This commit is contained in:
parent
35bcdeebf8
commit
74c69a0df6
2427 changed files with 31826 additions and 3468 deletions
|
|
@ -1,2 +0,0 @@
|
|||
-- parent script "Animal"
|
||||
-- ...
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
-- parent script "Dog"
|
||||
property ancestor
|
||||
|
||||
on new (me)
|
||||
me.ancestor = script("Animal").new()
|
||||
return me
|
||||
end
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
-- parent script "Cat"
|
||||
property ancestor
|
||||
|
||||
on new (me)
|
||||
me.ancestor = script("Animal").new()
|
||||
return me
|
||||
end
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
-- parent script "Lab"
|
||||
property ancestor
|
||||
|
||||
on new (me)
|
||||
me.ancestor = script("Dog").new()
|
||||
return me
|
||||
end
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
-- parent script "Collie"
|
||||
property ancestor
|
||||
|
||||
on new (me)
|
||||
me.ancestor = script("Dog").new()
|
||||
return me
|
||||
end
|
||||
34
Task/Inheritance-Single/Lingo/inheritance-single.lingo
Normal file
34
Task/Inheritance-Single/Lingo/inheritance-single.lingo
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
-- parent script "Animal"
|
||||
-- ...
|
||||
|
||||
-- parent script "Dog"
|
||||
property ancestor
|
||||
|
||||
on new (me)
|
||||
me.ancestor = script("Animal").new()
|
||||
return me
|
||||
end
|
||||
|
||||
-- parent script "Cat"
|
||||
property ancestor
|
||||
|
||||
on new (me)
|
||||
me.ancestor = script("Animal").new()
|
||||
return me
|
||||
end
|
||||
|
||||
-- parent script "Lab"
|
||||
property ancestor
|
||||
|
||||
on new (me)
|
||||
me.ancestor = script("Dog").new()
|
||||
return me
|
||||
end
|
||||
|
||||
-- parent script "Collie"
|
||||
property ancestor
|
||||
|
||||
on new (me)
|
||||
me.ancestor = script("Dog").new()
|
||||
return me
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue