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
We need your help to make ClojureDocs a great community resource. Here are a couple of ways you can contribute.
Please open a ticket if you have an idea of how we can improve ClojureDocs.
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.