Re: LoL which style for Clojure

2013-03-22 Thread jamieorc
Thanks, that's what I expected, especially after doing some (time... ) experiments. On Friday, March 22, 2013 3:05:10 PM UTC-4, Laurent PETIT wrote: > > > 2013/3/22 jamieorc > > >> Curious which style is preferred in Clojure and why: >> >> (defn f1

LoL which style for Clojure

2013-03-22 Thread jamieorc
Curious which style is preferred in Clojure and why: (defn f1 [] (let [x {:foo 1 :bar 2 :baz 3}] (keys x))) (let [x {:foo 1 :bar 2 :baz 3}] (defn f2 [] (keys x))) Cheers, Jamie -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. T

Lightweight lib/way to strip html from text

2012-09-06 Thread jamieorc
Hey all, I'm looking for a lightweight way to strip html from a long String of text and leave just the text. I've come across JSoup, but at over 300kb for the lib, not quite lightweight. Suggestions? Cheers, Jamie -- You received this message because you are subscribed to the Google Groups "