Skip to content
Snippets Groups Projects
Expr2.hs 229 B
Newer Older
Martin Ring's avatar
Martin Ring committed
module Expr2 where

data Expr = Var String
          | Num Double
          | Plus Expr Expr
          | Minus Expr Expr
          | Times Expr Expr
          | Div Expr Expr
	  | Pick Expr Expr
          deriving (Eq, Show)