cherry-lisp/src/Token.hs

10 lines
203 B
Haskell

module Token where
data Token = LeftParenT
| RightParenT
| BackslashT
| SymbolT String
| ApostropheT
| IntT Integer
deriving (Show, Eq)