Skip to content

Instantly share code, notes, and snippets.

@fogus
Created July 23, 2025 17:41
Show Gist options
  • Save fogus/c081a5b6438a55d58482eca79f83dce6 to your computer and use it in GitHub Desktop.
Save fogus/c081a5b6438a55d58482eca79f83dce6 to your computer and use it in GitHub Desktop.
(defn dynamic-require [& args]
(let [p (promise)
n *ns*]
(.start
(Thread.
(fn [] (deliver p (binding [*ns* n] (apply require args))))))
@p))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment