;; Testing evaluation of arithmetic operations (+ 1 2) ;=>3 (+ 5 (* 2 3)) ;=>11 (- (+ 5 (* 2 3)) 3) ;=>8 (/ (- (+ 5 (* 2 3)) 3) 4) ;=>2 ;; Testing evaluation within collection literals [1 2 (+ 1 2)] ;=>[1 2 3] {"a" (+ 7 8)} ;=>{"a" 15}