Skip to content

Instantly share code, notes, and snippets.

@tomjack

tomjack/bad.clj Secret

Created April 26, 2012 11:49
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 tomjack/68f6dcf147783fee5856 to your computer and use it in GitHub Desktop.
Save tomjack/68f6dcf147783fee5856 to your computer and use it in GitHub Desktop.
(ns foo
(:gen-class))
(defn -main []
(println (if ((loaded-libs) 'foo)
"Loaded!"
"Not loaded!")))
(ns foo
(:require foo)
(:gen-class))
(defn -main []
(println (if ((loaded-libs) 'foo)
"Loaded!"
"Not loaded!")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment