I have a macro like: (defmacro test [x] `"~x") After running it expands to the following: => (test abc) '~x' Why doesn't it expand to 'abc'? What is the co
Perhaps I am misunderstanding something. In Hy, if* can take (after the if* symbol) one predicate (evaluation returned if there are no further expressions) zero