# ->> - "Thread last" macro - Useful because seq functions take seq as last arg - Easy to comment out intermediate results (apply str (interpose \space (filter allowed coll))) (->> coll (filter allowed) (interpose \space) (apply str))
(apply str (interpose \space (filter allowed coll)))
(->> coll (filter allowed) (interpose \space) (apply str))