summaryrefslogtreecommitdiff
path: root/doc/tutorial/smarthouse/Smart.gf
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tutorial/smarthouse/Smart.gf')
-rw-r--r--doc/tutorial/smarthouse/Smart.gf17
1 files changed, 0 insertions, 17 deletions
diff --git a/doc/tutorial/smarthouse/Smart.gf b/doc/tutorial/smarthouse/Smart.gf
deleted file mode 100644
index f23082b47..000000000
--- a/doc/tutorial/smarthouse/Smart.gf
+++ /dev/null
@@ -1,17 +0,0 @@
-abstract Smart = {
-
-flags startcat = Command ;
-
-cat
- Command ;
- Kind ;
- Action Kind ;
- Device Kind ;
-fun
- CAction : (k : Kind) -> Action k -> Device k -> Command ;
- DKindOne : (k : Kind) -> Device k ;
- light, fan : Kind ;
- switchOn, switchOff : (k : Kind) -> Action k ;
- dim : Action light ;
-}
-