funcool

A channel for discussing and asking questions about Funcool libraries https://github.com/funcool/
niwinz 2016-08-09T19:47:53.000081Z

String interpolation is merged into cuerdas \o/ and it will be awailable on the up comming 1.0.0 release!

niwinz 2016-08-09T19:49:01.000082Z

A little example:

(def v 30)

(str/fmt "the value is ~{v}")
;; => "the value is 30"

(str/fmt "the value is ~(inc v)")
;; => "the value is 31"

1