summaryrefslogtreecommitdiff
path: root/examples/tutorial/resource-foods/ExtFoodsI.gf
diff options
context:
space:
mode:
authorjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
committerjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
commitf5461eb3d4eb2605b546a4ed202c12bcdaa1f4e4 (patch)
tree946c9e8542b8e8271b6b529a95c0400fa6613cb4 /examples/tutorial/resource-foods/ExtFoodsI.gf
parent8e1c6cca407c82fc09569d80c231b8d256735989 (diff)
Remove contribs and examples
Everything has now been moved to a separate repository at https://github.com/GrammaticalFramework/gf-contrib The contents of the examples folder are build during SetupWeb
Diffstat (limited to 'examples/tutorial/resource-foods/ExtFoodsI.gf')
-rw-r--r--examples/tutorial/resource-foods/ExtFoodsI.gf49
1 files changed, 0 insertions, 49 deletions
diff --git a/examples/tutorial/resource-foods/ExtFoodsI.gf b/examples/tutorial/resource-foods/ExtFoodsI.gf
deleted file mode 100644
index b59cfc5b5..000000000
--- a/examples/tutorial/resource-foods/ExtFoodsI.gf
+++ /dev/null
@@ -1,49 +0,0 @@
-incomplete concrete ExtFoodsI of ExtFoods = FoodsI ** open Syntax, LexFoods in {
-
- flags lexer=text ; unlexer=text ;
-
- lincat
- Move = Text ;
- Verb = V2 ;
- Guest = NP ;
- GuestKind = CN ;
- lin
- MAssert p = mkText (mkS p) ;
- MDeny p = mkText (mkS negativePol p) ;
- MAsk p = mkText (mkQS p) ;
-
- PVerb = mkCl ;
- PVerbWant guest verb item = mkCl guest want_VV (mkVP verb item) ;
-
- WhichVerb kind guest verb =
- mkText (mkQS (mkQCl (mkIP whichSg_IDet kind) guest verb)) ;
- WhichVerbWant kind guest verb =
- mkText (mkQS (mkQCl (mkIP whichSg_IDet kind)
- (mkClSlash guest want_VV verb))) ;
- WhichIs kind quality =
- mkText (mkQS (mkQCl (mkIP whichSg_IDet kind) (mkVP quality))) ;
-
- Do verb item =
- mkText
- (mkPhr (mkUtt politeImpForm (mkImp verb item))) exclMarkPunct ;
- DoPlease verb item =
- mkText
- (mkPhr (mkUtt politeImpForm (mkImp verb item)) please_Voc)
- exclMarkPunct ;
-
- I = mkNP i_Pron ;
- You = mkNP youPol_Pron ;
- We = mkNP we_Pron ;
-
- GThis = mkNP this_Det ;
- GThat = mkNP that_Det ;
- GThese = mkNP these_Det ;
- GThose = mkNP those_Det ;
-
- Eat = eat_V2 ;
- Drink = drink_V2 ;
- Pay = pay_V2 ;
- Lady = mkCN lady_N ;
- Gentleman = mkCN gentleman_N ;
-
-}