1
0
forked from GitHub/gf-core

Experimenting with the new parser:

Experimenting with the new parser:
p -cat=S -new -parser=CF-BU "John walks"
This commit is contained in:
aarne
2003-10-06 08:16:05 +00:00
parent 3aa5921fbc
commit 0ac49ec12f
4 changed files with 56 additions and 2 deletions

15
grammars/basic/Basic.gf Normal file
View File

@@ -0,0 +1,15 @@
abstract Basic = {
cat
S ; NP ; A1 ; CN ;
fun
PredA1 : NP -> A1 -> S ;
CondS : S -> S -> S ;
DisjA1 : A1 -> A1 -> A1 ;
Every : CN -> NP ;
ModA1 : CN -> A1 -> CN ;
Number : CN ;
Even : A1 ; Odd : A1 ; Prime : A1 ;
Zero : NP ;
}