This article is written for people who know Clojure, or at least the examples are. It might be nice to see the examples written in a non-LISP as well.<p>E.g.<p><pre><code> (?<-
(ops/explode [1 2 3 4] :> *v)
(println "Val:" *v))
</code></pre>
Is (I believe) the equivalent of Python's<p><pre><code> for element in [1, 2, 3, 4]:
print(element)</code></pre>