mirror of
https://github.com/helix-editor/helix
synced 2026-07-31 00:19:37 +02:00
13 lines
156 B
Clojure
13 lines
156 B
Clojure
(defn process [items]
|
|
(reduce + 0 items))
|
|
|
|
(let [a 1
|
|
b 2]
|
|
(+ a b))
|
|
|
|
(loop [i 0]
|
|
(recur (inc i)))
|
|
|
|
(println "first"
|
|
"aligned-to-first")
|