1
0
forked from GitHub/gf-core

prepared examples for Speechgram presentation

This commit is contained in:
aarne
2007-06-25 15:33:40 +00:00
parent 8cdbaa39f7
commit b114cb6283
9 changed files with 16 additions and 20 deletions

View File

@@ -2,13 +2,12 @@ abstract Toy0 = {
-- grammar from Chapter 2 of the Regulus book
flags startcat=MAIN ;
flags startcat=NP ;
cat
MAIN ; NP ; Noun ; Spec ;
NP ; Noun ; Spec ;
fun
Main : NP -> MAIN ;
SpecNoun : Spec -> Noun -> NP ;
One, Two : Spec ;