I am writing my first clojure program, and want to read lines from stdin.
When I try this:
(doall (map #(println %) (line-seq *in*)))
Just a note that for anyone who wants to only read a single line, there's the read-line function.