Hacker News new | ask | show | jobs
by LAC-Tech 1772 days ago
Lisp is polish notation for trees of variable arity. hence all the parens - you need some way to group them.

So in some K flavoured LISP I think it would be

    ((/ +) (! 100))
1 comments

Or in clojure with the threading macro

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

    (reduce + (range 100))
yes, quite a bit more long winded than K