summaryrefslogtreecommitdiff
path: root/examples/animal/AnimalsFre.gf
blob: 198c84ad78c04d9b1f3479bb63ea6c7bb45f8df5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--# -path=.:present:prelude

concrete AnimalsFre of Animals = QuestionsFre **
  open LangFre, ParadigmsFre, IrregFre in {

  lin
    Dog   = regN "chien" ;
    Cat   = regN "chat" ;
    Mouse = regGenN "souris" feminine ;
    Lion  = regN "lion" ;
    Zebra = regGenN "zèbre" masculine ;
    Chase = dirV2 (regV "chasser") ;
    Eat   = dirV2 (regV "manger") ;
    See   = voir_V2 ;
}