Logo

Programming-Idioms

  • PHP
  • Ruby

Idiom #92 Save object into JSON file

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

require "json"
x = {:hello => "goodbye"}

File.open("data.json", "w") do |f|
  f.puts(x.to_json)
end
file_put_contents('data.json', json_encode($x));
(require '[clojure.java.io :refer [file]])
(require '[jsonista.core :refer [write-value]])
(write-value (file "data.json") x)

New implementation...