Skip to content

Instantly share code, notes, and snippets.

@tomassedovic
Last active December 17, 2015 16:59
Show Gist options
  • Save tomassedovic/5642749 to your computer and use it in GitHub Desktop.
Save tomassedovic/5642749 to your computer and use it in GitHub Desktop.
Quine in Clojure, licensed under WTFPL 2: http://wtfpl2.com/
;; Quine in Clojure, licensed under WTFPL 2: http://wtfpl2.com/
(def user/license ";; Quine in Clojure, licensed under WTFPL 2: http://wtfpl2.com/")
(def user/code "(println (str license \\newline \\newline `(def license ~license) \\newline `(def code ~code) \\newline code))")
(println (str license \newline \newline `(def license ~license) \newline `(def code ~code) \newline code))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment