mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
18 lines
272 B
Plaintext
18 lines
272 B
Plaintext
concrete AggregationEng of Aggregation = {
|
|
|
|
lincat S, NP, VP = Str ;
|
|
|
|
lin
|
|
PredVP x y = x ++ y ;
|
|
ConjS a b = a ++ "or" ++ b ;
|
|
ConjVP a b = a ++ "or" ++ b ;
|
|
ConjNP a b = a ++ "or" ++ b ;
|
|
|
|
Run = "runs" ;
|
|
Walk = "walks" ;
|
|
John = "John" ;
|
|
Mary = "Mary" ;
|
|
|
|
}
|
|
|