import Text.ParserCombinators.Parsec hiding (spaces)
import System.Environment
+data LispVal = Atom String
+ | List [LispVal]
+ | DottedList [LispVal] LispVal
+ | Number Integer
+ | String String
+ | Bool Bool
+
symbol :: Parser Char
symbol = oneOf "!#$%&|*+-/:<=>?@^_~"