summaryrefslogtreecommitdiff
path: root/examples/animal/AnimalsEng.gf
blob: 22942b735219428f43956f116bf01625ec1a80bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--# -path=.:present:prelude
--resource/english:resource/abstract:resource/../prelude

concrete AnimalsEng of Animals = QuestionsEng **
  open LangEng, 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 ;
}