mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-12 14:29:31 -06:00
19 lines
308 B
Plaintext
19 lines
308 B
Plaintext
concrete English of Abstract = {
|
|
|
|
pattern
|
|
Pred np vp = np ++ vp ;
|
|
ConjS c A B = A ++ c ++ B ;
|
|
ConjVP c A B = A ++ c ++ B ;
|
|
ConjNP c A B = A ++ c ++ B ;
|
|
|
|
John = "John" ;
|
|
Mary = "Mary" ;
|
|
Bill = "Bill" ;
|
|
Walk = "walks" ;
|
|
Run = "runs" ;
|
|
Swim = "swims" ;
|
|
|
|
And = "and" ;
|
|
Or = "or" ;
|
|
}
|