; arithmetic in racket is done prefix style (display "3 + 2 * 4 = ") (display (+ 3 (* 2 4))) (display "\n")