(binding [clojure.pprint/*print-right-margin* 5]
;; Compare the two outputs below:
(binding [clojure.pprint/*print-pretty* true]
(clojure.pprint/write (range 3)))
; Prints:
; (0
; 1
; 2)
(binding [clojure.pprint/*print-pretty* false]
(clojure.pprint/write (range 3)))
; Prints:
; (0 1 2)
)