I have been following http://www.gigamonkeys.com/book/
.
In the chapter http://www.gigamonkeys.com/book/practical-building-a-unit-test-framework.html
there is a macro called check
which has following definition.
(defmacro check (form)
`(report-result ,form ',form))
From my understanding of macro I though above code is equivalent to following code
(defmacro check (form)
`(report-result ,form form))
But it throws Comma not inside a backquote.
.