Logo

Programming-Idioms

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

Idiom #92 Save object into JSON file

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

import std.file, std.json;
auto x = JSONValue(["age":42, "name":"Bob"]);
"data.json".write(x.toJSON);

Here we can call JSONValue directly on an Associative Array for it is a basic type. Complex structures must define their own serialization process to a tree of JSONValues.
(require '[clojure.java.io :refer [file]])
(require '[jsonista.core :refer [write-value]])
(write-value (file "data.json") x)

New implementation...
< >
programming-idioms.org