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
    
    
    Run

Is this possible without the use of macros?

Reply via email to