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
julia> asdf = "ghij" "ghij" julia> file_path(asdf, "src") "ghij/src" julia> "$(file_path(asdf, \"src\"))" ParseError("missing comma or ) in argument list") julia> "$(\"a\")" ParseError("missing separator in tuple")
Is there a trick I haven't picked up or is this actually not currently possible?
Sorry, Jeff, you'll have to continue hating interpolation.
The text was updated successfully, but these errors were encountered:
Workaround:
julia> "$(file_path(asdf, string(:src)))" "ghij/src"
Sorry, something went wrong.
(Of course, assigning to a variable first is an easier workaround...)
I never stopped hating string interpolation. This was also filed as #455, and we decided the best fix was to implement triple-quoted strings.
Ahh, my mistake, closing as dup of #455, then.
No branches or pull requests
Is there a trick I haven't picked up or is this actually not currently possible?
Sorry, Jeff, you'll have to continue hating interpolation.
The text was updated successfully, but these errors were encountered: