Read a file all at once (not recommended for large files):
(slurp "./small_file.txt")
Write data to a file all at once:
(spit "./file.txt" "Ocelots are Awesome!") ; overwrite existing content
(spit "./log.txt" "2016-07-26 New entry." :append...