Files
gf-core/examples/phrasebook/Sentences.gf
2010-03-21 03:37:02 +00:00

22 lines
529 B
Plaintext

abstract Sentences = Numeral ** {
cat
Sentence ; Object ; Item ; Kind ; Quality ;
fun
Is : Item -> Quality -> Sentence ;
IsNot : Item -> Quality -> Sentence ;
IWant : Object -> Sentence ;
ILike : Item -> 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 ;
}