I want to build a macro that, given the 'foo character, creates a method called foo* . How can I concatenate 'foo and '* ?
'foo
foo*
'*
(let [s (symbol 'test)] (symbol (str s "*")))
(symbol (str 'foo "*"))