I'm new to Clojure, and I would like to know where is all the documentation for all the libraries such as those found on clojars.org?
For example using lein I do the following to the project.clj
(defproject Program-name "1.0.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.3.0"]
[facts/speech-synthesis "1.0.0"]
[org.clojars.jeffsigmon/maryclient "4.3.0"]
[speech-synthesis "1.0.0"]
[clarity "0.5.6"]])
then uselein deps to install all the libraries
Core.clj
(ns Program-name.core
(:use [speech-synthesis.say :as say])(use [clarity.component]))
(use 'clarity.form)
so how would I import and get the API information for org.clojars.jeffsigmon/maryclient?
note: I read that that the API documentation is stored in the libraries and you have to import them to access it