Fork me on GitHub
#funcool
<
2016-08-09
>
niwinz19:08:53

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

niwinz19:08:01

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"