If you want to play around with it in a REPL, you need to "require" or "use"
the namespace
you want, and then you will have access to the functions in that namespace.
There is an example of this on the project page (see Synopsis):
https://github.com/mmcgrana/clj-json
Ambrose
On Mon, Jun 27, 201
(newbie reply)
1. adding the clj-json dependency to project.clj doesn't make the methods
automatically visible to the REPL or the code
2. we need to do one of the following:
1. (use '[cl-json.core]) , and use code by writing something like
(parse-string "blah")
2. (requ