Re: Clojure - Python Style suggestion

2013-02-04 Thread Gabriel Perdue
On Feb 4, 2013, at 2:01 PM, Sergey Didenko wrote: > For example the following quicksort implementation > > (defn qsort [[pivot & xs]] > (when pivot >(let [smaller #(< % pivot)] > (lazy-cat (qsort (filter smaller xs)) > [pivot] > (qsort (remove smaller xs

Re: Clojure - Python Style suggestion

2013-02-04 Thread Gabriel Perdue
On Feb 4, 2013, at 5:33 PM, Rich Morin wrote: >> Significant white space is the most horrifying development in programming >> languages in the last 20 years. > > Oh, I think it has some competition there (but mostly agree). > > >> Please kill this thread. > > There, I disagree. Clojurists sh