Clojure Quick Reference
The basic Clojure syntax and a few common functions you should probably learn first. The examples are editable (using an embedded REPL) so feel free to experiment and watch as the return value changes as you change the code.
Reload the page if you want to reset all the code back to the starting point.
Calling functions
The first element in a list, ()
, is treated as a call to a function. The examples show how to call functions with multiple arguments.
(+ 1 2)
(+ 3 (* 2 (- 7 2) 4) (/ 16 4))
(str "Clojure is " (- 2020 2007) " years old")
(inc 1)
(map inc [1 2 3 4 5])
(filter odd? (range 11))
Hint::Prefix notation and parens
Hugging code with
()
is a simple syntax to define the scope of code expressions. No additional;
,,
or spaces are required.Treating the first element of a list as a function call is referred to as prefix notation, which greatly simplifies Clojure syntax. Prefix notation makes mathematical expressions completely deterministic, eliminating the need for operator precedence.
Understanding functions
Functions contain doc-strings describing what that function does. The doc
function returns the doc-string of a particular function. Most editors also support viewing of doc-strings as well as jumping to function definitions to view the source code
(doc doc)
Strongly typed under the covers
Clojure is a dynamically typed language so types do not need to be explicitly defined, although type hints can be added for performance where required.
Clojure is strongly typed and everything is a type underneath, relative to the host platform (Clojure uses Java types, ClojureScript uses JavaScript types). The type of anything in Clojure can be returned using the type
function.
(type 42)
;; (type {:hash "data" :map "more data"})
(type {:hash "data" :map "more data"})
Modeling data with Collection types
Clojure has 4 main collection types, all immutable (cannot change once created) and can contain any Clojure types.
(str "lists used mainly " (* 2 2) " " :code)
[0 "indexed" :array (* 2 2) "random-access"]
{:key "value" "hash-map" "also referred to as dictionary"}
#{1 2 3 4 "unique" "set" "of" "values" "unordered" (* 3 9)}
Hint::Persistent data types
To change data in Clojure new copies are created rather than changing existing values. The copies of data will share values from the original data that are common in both. This sharing is called persistent data types and enables immutable data to be used efficiently.
Defining names for values (vars)
Names can be bound to any values, from simple values like numbers, collections or even function calls. Using def
is convenient way to create names for values that are shared in your code.
evaluating a name will return the value it is bound to.
(def public-health-data
({:date "2020-01-01" :confirmed-cases 23014 :recovery-percent 15}
{:date "2020-01-02" :confirmed-cases 23014 :recovery-percent 15}
{:date "2020-01-03" :confirmed-cases 23014 :recovery-percent 15}))
public-health-data
Hint::def for shared values, let for locally scoped values
let
function is used to bind names to values locally, such as within a function definition. Names bound withdef
have namespace scope so can be used with any code in that namespace.
Using data structures
Using the map
and inc
function, increment all the numbers in a vector
(map inc [1 2 3 4 5])
The above map
function is roughly equivalent to the following expression
(conj [] (inc 1) (inc 2) (inc 3) (inc 4) (inc 5))
The conj
function creates a new collection by combining a collecion and one or more values.
map
reduce
filter
are common functions for iterating through a collection / sequence of values
(map * [1 3 5 8 13 21] [3 5 8 13 21 34])
(filter even? [1 3 5 8 13 21 34])
(reduce + [31 28 30 31 30 31])
(empty? [])
Defining custom functions
(defn square-of
"Calculates the square of a given number"
[number]
(* number number))
(square-of 9)
Function definitions can also be used within other expressions, useful for mapping custom functions over a collection
(map (fn [x] (* x x)) [1 2 3 4 5])
Host Interoperability
The REPL in this web page is running inside a JavaScript engine, so JavaScript functions can be used from within ClojureScript code (ClojureScript is Clojure that runs in JavaScript environments).
In the box below, replace ()
with (js/alert "I am a pop-up alert")
()