#Declaration
@ScottTorres: a Julia fan, eh?
is it possible in Nim to have a macro/template (name - GBG) that starts with a custom character?
No, I don't think it's possible to start a macro name with anything other than a letter character as it would seem to be contrary to the general naming of (any) identifiers in the manual that they need to start with a letter
with backticks
macro `@myMacro`(): untyped =
discard
@mratsim:
with backticks...
That's really neat! I knew about backticks, but never thought of using them this way. Thanks.