Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Lisp

Idiom #92 Save object into JSON file

Write the contents of the object x into the file data.json.

(ql:quickload :yason)
(with-open-file (out "data.json" :direction :output)
  (yason:encode-plist x out))
(require '[clojure.java.io :refer [file]])
(require '[jsonista.core :refer [write-value]])
(write-value (file "data.json") x)

New implementation...