Fork me on GitHub
#clojure-uk
<
2019-10-13
>
dharrigan08:10:00

Good Morning

dharrigan13:10:17

Today, I learnt about the little trick of using quote -> ` to see what the reader is doing!

dharrigan13:10:34

e.g., "`#(+ %)"

🆒 8
clj 4
dharrigan13:10:22

(fn* [p1__13974#] (+ p1__13974#))

dharrigan13:10:21

user=> '(map #(inc %) [1 2 3 4])
(map (fn* [p1__14002#] (inc p1__14002#)) [1 2 3 4])

dharrigan13:10:23

pretty neat 🙂