Skip to content

Instantly share code, notes, and snippets.

@amalloy
Created April 13, 2013 03:11
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 amalloy/5376731 to your computer and use it in GitHub Desktop.
Save amalloy/5376731 to your computer and use it in GitHub Desktop.
;;;; my/project/dummy.clj
(ns my.project.dummy
(:gen-class))
(defn -main [& args]
(require 'my.project.main)
(apply (resolve 'my.project.main/-main) args))
;;;; my/project/main.clj
(ns my.project.main
(:require whatever))
(defn -main [& args]
;; do real work
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment