Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
46 votes
6 answers
10k views

Why is "tight coupling between functions and data" bad?

I found this quote in "The Joy of Clojure" on p. 32, but someone said the same thing to me over dinner last week and I've heard it other places as well: [A] downside to object-oriented programming ...
GlenPeterson's user avatar
12 votes
3 answers
4k views

Why can't we write nested shorthand functions in Clojure?

I tried to evaluate a Clojure expression with nested shorthand functions today, and it wouldn't let me. The expression was: (#(+ % (#(+ % (* % %)) %)) 5) ; sorry for the eye bleed The output was: ...
Lincoln Bergeson's user avatar