Skip to content

Instantly share code, notes, and snippets.

@tnoborio
Created September 5, 2010 09:04
Show Gist options
  • Save tnoborio/565875 to your computer and use it in GitHub Desktop.
Save tnoborio/565875 to your computer and use it in GitHub Desktop.
(ns hoge.core
(:gen-class))
(import java.io.File)
(def _nil_ nil)
(defn -main [& args]
(prn (File. _nil_ "fname"))
(prn (File. (identity nil) "fname")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment