Rename Zero grammar to Walking

This commit is contained in:
John J. Camilleri
2021-01-26 09:35:21 +01:00
parent 270e7f021f
commit 6f622b496b
4 changed files with 10 additions and 10 deletions

12
testsuite/lpgf/Walking.gf Normal file
View File

@@ -0,0 +1,12 @@
-- From Angelov, Bringert, Ranta (2009)
abstract Walking = {
flags startcat = S ;
cat
S; NP; VP;
fun
And : S -> S -> S ;
Pred : NP -> VP -> S ;
John : NP ;
We : NP ;
Walk : VP ;
}