(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. (require '(clj-json [core :as json])), and then (json/parse-string "json-string-here") Hope it helps your case. Regards, Debabrata Pani On Mon, Jun 27, 2011 at 3:34 PM, Vincent <vincent....@gmail.com> wrote: > > 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 start using this library function when slime repl gets > connected to swank thru lein? > > > Thanks in advance > Vincent > > > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to clojure@googlegroups.com > Note that posts from new members are moderated - please be patient with > your first post. > To unsubscribe from this group, send email to > clojure+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en