]> git.rkrishnan.org Git - yorgey.git/blob - hw5/ExprT.hs
hw5: downloaded stuff
[yorgey.git] / hw5 / ExprT.hs
1 module ExprT where
2
3 data ExprT = Lit Integer
4            | Add ExprT ExprT
5            | Mul ExprT ExprT
6   deriving (Show, Eq)