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
I want to explore clj-json lib . how to do load this library and starting
using its function
using repl.
If i have a project.clj in lein project and i have clj-json as one of
dependencies
, will this library loaded when i connect thru emacs slime connect . What
has to be done
so that i can