We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It's currently very hard to use strformat module in a quote do section
Here is the ideal way to use it that does not work
import macros, strformat macro foo(): untyped = result = quote do: let bar = "Hello, World" echo &"Let's interpolate {bar} in the string" foo()
Here is the current way to make it work:
import macros, strformat macro foo(): untyped = let workaround = newIdentNode("workaround") result = quote do: let `workaround` = "Hello, World" echo &"Let's interpolate {workaround} in the string" foo()
The text was updated successfully, but these errors were encountered:
macros.genAst
quote do
genAst
Successfully merging a pull request may close this issue.
It's currently very hard to use strformat module in a quote do section
Here is the ideal way to use it that does not work
Here is the current way to make it work:
The text was updated successfully, but these errors were encountered: