Fork me on GitHub
#clojure-uk
<
2020-11-11
>
dharrigan06:11:07

Good Morning!

Russ Anderson09:11:05

Morning morning

zyxmn11:11:36

Good morning

dharrigan16:11:32

Do people perfer this:

dharrigan16:11:45

(str "foo bar" baz "wibble")

👌 3
dharrigan16:11:59

(format "foo bar %s wibble" baz)

alexlynham16:11:59

i do the former :woman-shrugging:

3
mccraigmccraig16:11:34

+1 str... i find format quite hard to read as soon as there are a few args

Russ Anderson16:11:53

I do the former, probably only out of habits formed many moons ago in other languages

mamapitufo17:11:54

I guess syntax highlighting will help with the first option

dominicm18:11:17

I would use format for that. But mostly I use str. I seem to keep answering questions against the grain.

Hugh Powell22:11:56

I use the later, my eye finds it easier to find the variables being used.