Created
January 1, 2022 11:45
-
-
Save saikyun/90a9bda09f1ff4dd199b02d8929d3c74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# doesn't work | |
(setdyn :dynamic-defs true) | |
(defn main | |
[& args] | |
(print "hello")) | |
# doesn't work | |
(setdyn :dynamic-defs true) | |
(defn main {:dynamic false} | |
[& args] | |
(print "hello")) | |
# works | |
(setdyn :dynamic-defs true) | |
(setdyn :dynamic-defs false) | |
(defn main | |
[& args] | |
(print "hello")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment