Skip to content

Instantly share code, notes, and snippets.

@viksit
Created August 24, 2010 08:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viksit/3e3bdb1f0ca0ca72c5c6 to your computer and use it in GitHub Desktop.
Save viksit/3e3bdb1f0ca0ca72c5c6 to your computer and use it in GitHub Desktop.
(defn serialize [o filename]
(with-open [outp (-> (File. filename) java.io.FileOutputStream. java.io.ObjectOutputStream.)]
(.writeObject outp o)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment