(defn append-to-file
"Uses spit to append to an output file.
ostr is the string, and file-name is an
actual file name read in using slurp or
a constant in double quote characters."
[file-name ostr]
(spit file-name ostr :append true))