summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Constant.hs7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/Constant.hs b/app/Constant.hs
new file mode 100644
index 0000000..dd48338
--- /dev/null
+++ b/app/Constant.hs
@@ -0,0 +1,7 @@
+module Constant where
+
+data Constant
+ = Atom Int
+ | Number Int
+ | Str String
+ deriving (Show, Eq, Ord)