Added pronouns to stoneage grammar.

This commit is contained in:
bringert
2005-02-25 14:13:13 +00:00
parent 3d6565814f
commit 3f52b196f6
2 changed files with 20 additions and 0 deletions

View File

@@ -78,6 +78,15 @@ fun
Few : CN -> NP ;
Other : CN -> NP ;
-- Pronouns
I : NP ;
You_One : NP ;
He : NP ;
We : NP ;
You_Many : NP ;
They : NP ;
-- People
Woman : CN ;
Man : CN ;

View File

@@ -80,6 +80,17 @@ lin
Few = DetNP few_Det ;
Other = DetNP other_Det ;
-- Pronouns
I = i_NP ;
You_One = thou_NP ;
He = he_NP ;
We = we_NP ;
You_Many = you_NP ;
They = they_NP ;
-- Nouns
Woman = UseN woman_N ;
Man = UseN man_N ;
Person = UseN person_N ;