1
0
forked from GitHub/gf-core

changed animals so that it compiles, after manual removal of duplicated api functions (to be fixed in ToAPI)

This commit is contained in:
aarne
2010-12-06 11:03:00 +00:00
parent a3ae8cf696
commit 17415e0be3
6 changed files with 28 additions and 25 deletions

View File

@@ -1,16 +1,15 @@
--# -path=.:present:prelude
--resource/english:resource/abstract:resource/../prelude
--# -path=.:present
concrete AnimalsEng of Animals = QuestionsEng **
open LangEng, ParadigmsEng, IrregEng in {
open SyntaxEng, ParadigmsEng, IrregEng in {
lin
Dog = regN "dog" ;
Cat = regN "cat" ;
Mouse = mk2N "mouse" "mice" ;
Lion = regN "lion" ;
Zebra = regN "zebra" ;
Chase = dirV2 (regV "chase") ;
Eat = dirV2 eat_V ;
See = dirV2 see_V ;
Dog = mkN "dog" ;
Cat = mkN "cat" ;
Mouse = mkN "mouse" "mice" ;
Lion = mkN "lion" ;
Zebra = mkN "zebra" ;
Chase = mkV2 "chase" ;
Eat = mkV2 eat_V ;
See = mkV2 see_V ;
}