summaryrefslogtreecommitdiff
path: root/app/Constant.hs
blob: dd48338ec17d1404426ef3048ce64cb7f153811f (plain)
1
2
3
4
5
6
7
module Constant where

data Constant
  = Atom Int
  | Number Int
  | Str String
  deriving (Show, Eq, Ord)