Hello,
I would like to concatenate two identifiers in a template, like so:
template myTemplate(id: untyped, body: untyped): untyped =
proc r##id() = # I've seen it done this way in C
body
Is this possible without the use of macros?
proc `r id` = body