help wantedparser
Métricas do repositório
- Stars
- (48.709 stars)
- Métricas de merge de PR
- (Mesclagem média 20d 6h) (157 fundiu PRs em 30d)
Description
It would be nice to have a way to "double interpolate" a variable with respects to nested possible interpolation contexts to make it easier to write quoted code blocks that wants to interpolate a variable inside a string. e.g., so the below code echos "hi". Not sure what the best way to go about that is.
macro example()
f="hi"
quote
run(`echo $$f`)
end
end