summaryrefslogtreecommitdiff
path: root/eclipse/examples/functors/FoodsI.gf
diff options
context:
space:
mode:
authorjohn.j.camilleri <john.j.camilleri@chalmers.se>2012-03-05 09:50:29 +0000
committerjohn.j.camilleri <john.j.camilleri@chalmers.se>2012-03-05 09:50:29 +0000
commitf6242702f5b1c42a81cad02e44a0f203b80cd497 (patch)
tree84c55bdbb5f999470088a1726b8651cc27abe124 /eclipse/examples/functors/FoodsI.gf
parentf4fb8fe57d309c05c46e8d7459e550a1b7c6c4d9 (diff)
GFEP: updated examples
Diffstat (limited to 'eclipse/examples/functors/FoodsI.gf')
-rw-r--r--eclipse/examples/functors/FoodsI.gf28
1 files changed, 0 insertions, 28 deletions
diff --git a/eclipse/examples/functors/FoodsI.gf b/eclipse/examples/functors/FoodsI.gf
deleted file mode 100644
index a01da068f..000000000
--- a/eclipse/examples/functors/FoodsI.gf
+++ /dev/null
@@ -1,28 +0,0 @@
--- Functor
--- (a module that opens one or more interfaces)
-incomplete concrete FoodsI of Foods = open Syntax, LexFoods in {
-lincat
- Phrase = Cl ;
- Item = NP ;
- Kind = CN ;
- Quality = AP ;
-lin
- Is item quality = mkCl item quality ;
- This kind = mkNP this_Det kind ;
- That kind = mkNP that_Det kind ;
- These kind = mkNP these_Det kind ;
- Those kind = mkNP those_Det kind ;
- QKind quality kind = mkCN quality kind ;
- Very quality = mkAP very_AdA quality ;
-
- Wine = mkCN wine_N ;
- Pizza = mkCN pizza_N ;
- Cheese = mkCN cheese_N ;
- Fish = mkCN fish_N ;
- Fresh = mkAP fresh_A ;
- Warm = mkAP warm_A ;
- Italian = mkAP italian_A ;
- Expensive = mkAP expensive_A ;
- Delicious = mkAP delicious_A ;
- Boring = mkAP boring_A ;
-}