summaryrefslogtreecommitdiff
path: root/examples/gadt-transfer/Foods.gf
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gadt-transfer/Foods.gf')
-rw-r--r--examples/gadt-transfer/Foods.gf15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/gadt-transfer/Foods.gf b/examples/gadt-transfer/Foods.gf
deleted file mode 100644
index 8ea02f39d..000000000
--- a/examples/gadt-transfer/Foods.gf
+++ /dev/null
@@ -1,15 +0,0 @@
--- (c) 2009 Aarne Ranta under LGPL
-
-abstract Foods = {
- flags startcat = Comment ;
- cat
- Comment ; Item ; Kind ; Quality ;
- fun
- Pred : Item -> Quality -> Comment ;
- This, That, These, Those : Kind -> Item ;
- Mod : Quality -> Kind -> Kind ;
- Wine, Cheese, Fish, Pizza : Kind ;
- Very : Quality -> Quality ;
- Fresh, Warm, Italian,
- Expensive, Delicious, Boring : Quality ;
-}