;; \t Insert a tab.
;; \n Insert a newline.
;; \r Insert a carriage return.
;; \" Insert a double quote.
;; \\ Insert a backslash character.
(def text "She said \"Hello!\" to me.")
;; text is: She said "Hello!" to me.
(println text)
;; prn prints the literal back, escapes and all
(prn text)