Skip to content

Instantly share code, notes, and snippets.

@arnaudbos
Created January 24, 2014 16:27
Show Gist options
  • Save arnaudbos/8600721 to your computer and use it in GitHub Desktop.
Save arnaudbos/8600721 to your computer and use it in GitHub Desktop.
Clojure: Read edn
user=> (require 'clojure.edn)
nil
user=> (slurp "stored-array.dat")
"[1 2 3 4]\n"
user=> (clojure.edn/read-string (slurp "stored-array.dat"))
[1 2 3 4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment