Title

Subtitle

text

Define a function:

(defn f [x] (+ x 3))

Use the function:

(delay [:hiccup
        [:h5
         (-> 12
             f)]])

15

Create some data:

(def n 14)
(for [i (range n)] {:a i})

({:a 0}
 {:a 1}
 {:a 2}
 {:a 3}
 {:a 4}
 {:a 5}
 {:a 6}
 {:a 7}
 {:a 8}
 {:a 9}
 {:a 10}
 {:a 11}
 {:a 12}
 {:a 13})


notespace.examples.example - created by notespace, Sat Nov 16 21:10:35 IST 2019.