mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-05-28 01:18:57 -06:00
25 lines
521 B
Plaintext
25 lines
521 B
Plaintext
concrete GrammarMay of Grammar =
|
|
NounMay,
|
|
VerbMay,
|
|
AdjectiveMay,
|
|
AdverbMay,
|
|
NumeralMay,
|
|
SentenceMay,
|
|
QuestionMay,
|
|
RelativeMay,
|
|
ConjunctionMay,
|
|
PhraseMay,
|
|
TextX - [AAnter, TFut, TCond, IAdv],
|
|
StructuralMay,
|
|
IdiomMay,
|
|
TenseX - [AAnter, TFut, TCond, IAdv]
|
|
** open ParamX in {
|
|
|
|
flags startcat = Phr ;
|
|
|
|
lin AAnter = {s = "sudah" ; a = ParamX.Anter} ; --# notpresent
|
|
TFut = {s = "akan" ; t = ParamX.Fut} ; --# notpresent
|
|
TCond = {s = "akan" ; t = ParamX.Cond} ; --# notpresent
|
|
|
|
} ;
|