summaryrefslogtreecommitdiff
path: root/examples/animals/AnimalsFre.gf
diff options
context:
space:
mode:
Diffstat (limited to 'examples/animals/AnimalsFre.gf')
-rw-r--r--examples/animals/AnimalsFre.gf16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/animals/AnimalsFre.gf b/examples/animals/AnimalsFre.gf
index 7a8ec0c25..8d8f66c7a 100644
--- a/examples/animals/AnimalsFre.gf
+++ b/examples/animals/AnimalsFre.gf
@@ -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 ;
}