You HAVE to do benchmarks
Assume that we have a piece of code in which we have to compute the reciprocal of each element of a big vector, in Clojure we can use the map function
(def v (vec (range 1 1000000)))
(def result (doall (map #(/ 1.0 %) v)))
The doall just guarantee t...
keepcoding.hashnode.dev2 min read