This macro gives the output of a given line as the last argument of the next line function call. For e.g.
(prn (str (+ 2 3)))
is same as
(->> 2 (+ 3) (str) (prn))