mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 21:19:31 -06:00
22 lines
529 B
Plaintext
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 ;
|
|
|
|
}
|