I have recently been learning a lisp language, which I thought would be fun to talk about. It’s Racket, and I am again thanking my homie @tA for his continued support in learning this somewhat different language Evaluation Everything in racket is evaluated. This means you can do very mathematical looking functions, like the following (define (quadPos a b c) ( (/ (+ (* b -1) (sqrt (- (* b b) (* 4 a c)) )) (* 2 a)))) which is the quadratic formula, believe it or not… (for the + anyway)…