I am new to clojure, when I use
lein new app
I saw this line
:main ^:skip-aot my-stuff.core
What does ^:skip-aot
mean?
In which section of clojure document could I find the description?
I am new to clojure, when I use
lein new app
I saw this line
:main ^:skip-aot my-stuff.core
What does ^:skip-aot
mean?
In which section of clojure document could I find the description?
It is Leiningen configuration. Have a look at : Sample project.clj.
If you are creating a Pedestal application, then that is why they want to skip AOT:
Why does pedestal skip AOT? and in Heroku context: Reason for skipping AOT?
© 2022 - 2024 — McMap. All rights reserved.
lein new app my-stuff
in the tutorial – Hoye