simple-arithmetic-compiler/app/Lexer.hs
2024-07-15 23:37:14 +02:00

10 lines
189 B
Haskell

module Lexer where
data Token = Plus
| Minus
| Multiply
| Divide
| Integer Int
| LBrace
| RBrace
deriving Show