change Food to Words in Phrasebook, since it's unpractical to have many small modules; added syntactic forms and words

This commit is contained in:
aarne
2010-03-26 22:07:17 +00:00
parent c42afc59eb
commit 40763b5f61
27 changed files with 554 additions and 40 deletions

View File

@@ -1,7 +1,8 @@
abstract Sentences = Numeral ** {
cat
Sentence ; Object ; Item ; Kind ; Quality ;
Sentence ; Question ; Object ; Item ; Kind ; Quality ;
Place ; PlaceKind ; Currency ; Price ;
fun
Is : Item -> Quality -> Sentence ;
@@ -9,13 +10,22 @@ abstract Sentences = Numeral ** {
IWant : Object -> Sentence ;
ILike : Item -> Sentence ;
DoYouHave : Kind -> Sentence ;
WhetherIs : Item -> Quality -> Sentence ;
DoYouHave : Kind -> Question ;
WhetherIs : Item -> Quality -> Question ;
WhereIs : Place -> Question ;
HowMuchCost : Item -> Question ;
ItCost : Item -> Price -> Sentence ;
AmountCurrency : Numeral -> Currency -> Price ;
ObjItem : Item -> Object ;
ObjNumber : Numeral -> Kind -> Object ;
This, That, These, Those : Kind -> Item ;
This, That, These, Those, The, Thes : Kind -> Item ;
SuchKind : Quality -> Kind -> Kind ;
Very : Quality -> Quality ;
Too : Quality -> Quality ;
ThePlace : PlaceKind -> Place ;
}