diff options
Diffstat (limited to 'transfer/examples/aggregation/English.gf')
| -rw-r--r-- | transfer/examples/aggregation/English.gf | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/transfer/examples/aggregation/English.gf b/transfer/examples/aggregation/English.gf new file mode 100644 index 000000000..21da16b23 --- /dev/null +++ b/transfer/examples/aggregation/English.gf @@ -0,0 +1,18 @@ +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" ; +} |
