Hi,
eval happens with *ns* bound to clojure-core. Try to fully qualify make-list.
Sincerely
Meikel
PS: In case you are Chris on SO, I answered your question there also.
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send ema
I'm working on a project where I want to use clojure macros in part of
my config file that I eval at runtime. However, I'm getting an "Unable
to resolve symbol" exception. So I made a test case to reproduce it
below:
(ns test.core (:gen-class))
(defmacro make-list [& body]
`(list ~@body))
(d