Hello everyone, Is it possible in Nim to have a macro/template that starts with a custom character? For example, a macro like:
#Declaration
macro @myMacro() :
...
...
#Usage
@myMacro
Yes, but it won't be used the way you'd like:
macro `@myMacro`(): untyped = discard
`@myMacro`()