How would I eval to the following?
(defn run-clojure-func []
(println "welcome"))
(defn -main [& args]
(eval (*func* (first args)))
java exam.Hello "run-clojure-func"
|
How would I eval to the following?
|
|||||
|
|
Two versions for you to consider – entirely equivalent, but useful as points of comparison:
and this, using destructuring and no
|
|||
|
|