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,15 +1,15 @@
--# -path=.:present:prelude
--# -path=.:present
concrete AnimalsFre of Animals = QuestionsFre **
open LangFre, ParadigmsFre, IrregFre in {
open SyntaxFre, ParadigmsFre, IrregFre in {
lin
Dog = regN "chien" ;
Cat = regN "chat" ;
Mouse = regGenN "souris" feminine ;
Dog = mkN "chien" ;
Cat = mkN "chat" ;
Mouse = mkN "souris" feminine ;
Lion = mkN "lion" masculine ;
Zebra = regGenN "zèbre" masculine ;
Chase = dirV2 (regV "chasser") ;
Eat = dirV2 (regV "manger") ;
Zebra = mkN "zèbre" masculine ;
Chase = mkV2 (mkV "chasser") ;
Eat = mkV2 (mkV "manger") ;
See = voir_V2 ;
}