Right now we evaluate strings, that should be converted to use a cons list as follows: ``` (+ 4 (+ 5 6)) -> (cons '+ (cons 4 (cons (cons '+ (cons 5 (cons 6 '()))) '()))) ```