Strip down format. More early work on compiler. Add testsuite (doesn't work yet).

This commit is contained in:
John J. Camilleri
2021-01-25 12:10:30 +01:00
parent cd5881d83a
commit f24c50339b
9 changed files with 245 additions and 92 deletions

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

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