ClojureDocs

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

    Top Contributors
    Recently Updated
    jimka2001 authored an example for clojure.core/future-cancel 4 days ago.
    sanel authored an example for clojure.core/seque 52 days ago.
    arcanjoaq authored an example for clojure.core/sort-by 80 days ago.
    eneroth authored a note for clojure.core/constantly 84 days ago.
    rbatista authored a note for clojure.core/parse-uuid 86 days ago.
    jimka2001 authored a note for clojure.test/is 87 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.