出现在新行后(即缩进)的空格使得打印变得漂亮。逗号和新行之间的空格是多余的。
与Clojure对比
λ clj -M -r
Clojure 1.11.1
user=> (require '[clojure.pprint :refer [pprint *print-right-margin*]])
nil
user=> (prn (with-out-str (binding [*print-right-margin* 20] (pprint {:a 1 :b 2 :c 3 :d 4}))))
"{:a 1,\n :b 2,\n :c 3,\n :d 4}\n"
nil