Files
gf-core/examples/phrasebook/Sentences.gf
2010-03-20 21:21:50 +00:00

21 lines
497 B
Plaintext

abstract Sentences = Numeral ** {
cat
Sentence ; Object ; Item ; Kind ; Quality ;
fun
Is : Item -> Quality -> Sentence ;
IsNot : Item -> Quality -> Sentence ;
IWant : Object -> Sentence ;
DoYouHave : Kind -> Sentence ;
WhetherIs : Item -> Quality -> Sentence ;
ObjItem : Item -> Object ;
ObjNumber : Numeral -> Kind -> Object ;
This, That, These, Those : Kind -> Item ;
SuchKind : Quality -> Kind -> Kind ;
Very : Quality -> Quality ;
}