1
0
forked from GitHub/gf-rgl

(May) Add future tense + tests for tenses

This commit is contained in:
Inari Listenmaa
2020-08-19 19:26:02 +02:00
parent 61ffe8e9a4
commit 20483a23b1
2 changed files with 14 additions and 1 deletions

View File

@@ -12,11 +12,13 @@ concrete GrammarMay of Grammar =
TextX,
StructuralMay,
IdiomMay,
TenseX - [AAnter]
TenseX - [AAnter, TFut]
** open ParamX in {
flags startcat = Phr ;
lin
AAnter = {s = "sudah" ; a = ParamX.Anter} ;
TFut = {s = "akan" ; t = ParamX.Fut} ;
} ;

View File

@@ -0,0 +1,11 @@
Lang: UseCl (TTAnt TPres AAnter) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN cat_N)) (UseV walk_V))
LangEng: the cat has walked
LangMay: kucing sudah berjalan
Lang: UseCl (TTAnt TPres ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN cat_N)) (UseV walk_V))
LangEng: the cat walks
LangMay: kucing berjalan
Lang: UseCl (TTAnt TFut ASimul) PPos (PredVP (DetCN (DetQuant DefArt NumSg) (UseN cat_N)) (UseV walk_V))
LangEng: the cat will walk
LangMay: kucing akan berjalan