Simplify 2
module Simplify where — Write all of your code in this file! import Expr import Poly ——————————————————————————– — * Task 1 — Define add, which adds 2 expressions together without introducing — any ‘junk’. — Define add, which adds 2 expressions together without introducing any ‘junk’. add :: Expr -> Expr -> Expr add (NumLit […]