Hacker News new | ask | show | jobs
by zdkl 1778 days ago
Or in clojure with the threading macro

    (->> 100 range (reduce +))
which is equivalent to this, without the macro

    (reduce + (range 100))
1 comments

yes, quite a bit more long winded than K