diff options
Diffstat (limited to 'examples/phrasebook/Sentences.gf')
| -rw-r--r-- | examples/phrasebook/Sentences.gf | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/phrasebook/Sentences.gf b/examples/phrasebook/Sentences.gf new file mode 100644 index 000000000..0a9c7b57e --- /dev/null +++ b/examples/phrasebook/Sentences.gf @@ -0,0 +1,20 @@ +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 ; + +} |
