I came across the tweet today: Start each day by reading the implementation of a function or macro in Clojure\'s core.clj.
In Cloju开发者_如何学Gore I do this (println (cond false \"don\'t care\" \"otherwise\" \"otherwise\"))
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing
What is the best way to read a very large file (like a text file having 100 000 names one on each line) into a 开发者_如何学编程list (lazily - loading it as needed) in clojure?
McCarthy\'s original Lisp and some number of incarnations开发者_StackOverflow thereafter did not have a macro facility like we now have in Common Lisp, Clojure, Scheme, etc...This I know.
I am writing a web service that uses JSON or optional Clojure data expressions as the body format. The data is just to be read, not evaluated, if that matters. What would you recommend to use as MIME
I decided to work through the CLRS Introduction to Algorithms text, and picked the printing neatly problem here.
Many a times, I\'ve come across statements of the form X does/doesn\'t compose well. I can remember few instances that I\'ve read recently :
Which开发者_C百科 is better idiomatic clojure practice for representing a tree made up of different node types:
Prepending to a list is easy: user=> (conj \'(:bar :baz) :foo) (:foo :bar :baz) Appending to a vector is easy: