ClojureDocs

ClojureDocs is a community-powered documentation and examples repository for the Clojure programming language.

Top Contributors
Recently Updated
Kaspazza added a see-also from clojure.core/ns-map to clojure.core/find-ns 6 days ago.
djblue added a see-also from clojure.core/iterate to clojure.core/iteration 18 days ago.
onionpancakes authored an example for clojure.core/resolve 19 days ago.
tomdl89 added a see-also from clojure.core/proxy-mappings to clojure.core/proxy 23 days ago.
divs1210 authored a note for clojure.core/sequence 26 days ago.
teodorlu authored an example for clojure.core/defrecord 26 days ago.
On Clojure

Clojure is a concise, powerful, and performant general-purpose programming language that runs on the JVM, CLR, Node.js, and modern mobile and desktop web browsers.

New to Clojure and not sure where to start? Here are a few good resources to get you off on the right foot:

There's no denying that Clojure is just so *different* from what most of us are used to (what is up with all those parentheses?!), so it's no surprise that it takes a bit to get your head around it. Stick with it, and you won't be disappointed.

But don't take our word for it, here's what XKCD has to say:

Seems like more than a few these days. Happy coding!

;; Let's define some data using list / map
;; literals:

(def scenes [{:subject  "Frankie"
              :action   "say"
              :object   "relax"}

             {:subject  "Lucy"
              :action   "❤s"
              :object   "Clojure"}

             {:subject  "Rich"
              :action   "tries"
              :object   "a new conditioner"}])

;; Define a function
(defn people-in-scenes [scenes]
  (->> scenes
       (map :subject)
       (interpose ", ")
       (reduce str)))


;; Who's in our scenes?

(println "People:" (people-in-scenes scenes))

;;=> People: Frankie, Lucy, Rich
Clojure in Production
Contribute to ClojureDocs

We need your help to make ClojureDocs a great community resource. Here are a couple of ways you can contribute.

  • Give Feedback

    Please open a ticket if you have an idea of how we can improve ClojureDocs.

  • Add an Example

    Sharing your knowledge with fellow Clojurists is easy:

    First, take a look at the examples style guide, and then add an example for your favorite var (or pick one from the list).

    In addition to examples, you also have the ability to add 'see also' references between vars.