;; I've added try/catch here so that the exception doesn't break everything else.
(try 
  (1 2 3 4 5)
  (catch Exception e (println "error: " e)))

(println (list 1 2 3 4 5))

(println '(1 2 3 4 5))

(println '(str "foo" "bar" "baz"))