forked from GitHub/gf-core
extended mini resource grammar in examples, with Eng, Ita, Cmn (Mandarin Chinese by Jolene)
This commit is contained in:
24
examples/extmini/LexiconEng.gf
Normal file
24
examples/extmini/LexiconEng.gf
Normal file
@@ -0,0 +1,24 @@
|
||||
concrete LexiconEng of Lexicon = GrammarEng ** open ParadigmsEng in {
|
||||
|
||||
lin
|
||||
man_N = mkN "man" "men" ;
|
||||
woman_N = mkN "woman" "women" ;
|
||||
house_N = mkN "house" ;
|
||||
tree_N = mkN "tree" ;
|
||||
big_A = mkA "big" ;
|
||||
small_A = mkA "small" ;
|
||||
green_A = mkA "green" ;
|
||||
walk_V = mkV "walk" ;
|
||||
sleep_V = mkV "sleep" "sleeps" "slept" "slept" ;
|
||||
arrive_V = mkV "arrive" ;
|
||||
love_V2 = mkV2 "love" ;
|
||||
look_V2 = mkV2 (mkV "look") "at" ;
|
||||
please_V2 = mkV2 "please" ;
|
||||
believe_VS = mkV "believe" ;
|
||||
know_VS = mkV "know" "knows" "knew" "known" ;
|
||||
wonder_VQ = mkV "wonder" ;
|
||||
john_PN = mkPN "John" ;
|
||||
mary_PN = mkPN "Mary" ;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user