cherry-lisp/src/Token.hs

10 lines
203 B
Haskell
Raw Normal View History

2021-01-30 21:38:44 +00:00
module Token where
2021-01-28 01:16:30 +00:00
data Token = LeftParenT
| RightParenT
2021-01-30 19:47:05 +00:00
| BackslashT
| SymbolT String
2021-01-30 14:28:30 +00:00
| ApostropheT
2021-01-28 01:16:30 +00:00
| IntT Integer
deriving (Show, Eq)