summaryrefslogtreecommitdiff
path: root/assignment-13/Arduino.icl
diff options
context:
space:
mode:
authorCamil Staps2018-01-03 09:24:21 +0100
committerCamil Staps2018-01-03 09:24:21 +0100
commit33db1946d2a09898761b7d397fe4028725f2215b (patch)
tree1f68cb8b276b7a20f42f325c76e6d4853ea8e68f /assignment-13/Arduino.icl
parentCleanup (diff)
Rename & restructure
Diffstat (limited to 'assignment-13/Arduino.icl')
-rw-r--r--assignment-13/Arduino.icl16
1 files changed, 0 insertions, 16 deletions
diff --git a/assignment-13/Arduino.icl b/assignment-13/Arduino.icl
deleted file mode 100644
index fe108f4..0000000
--- a/assignment-13/Arduino.icl
+++ /dev/null
@@ -1,16 +0,0 @@
-implementation module Arduino
-
-import StdOverloaded
-
-import Util
-
-instance toString Button
-where
- toString B0 = "B0"
- toString B1 = "B1"
- toString B2 = "B2"
- toString B3 = "B3"
- toString B4 = "B4"
- toString B5 = "B5"
-
-instance print Button where print b = print (toString b)