Currently, this does not work:
julia> is = [1,2]
2-element Vector{Int64}:
1
2
julia> "$.is" # currently a syntax error
2-element Vector{String}:
"1"
"2"
But it should, right? For completeness sake?
Allowing $.
as a broadcasting operation should be non-breaking since "$."
is invalid.
It would make type-inference slightly more involved, since "..."
can now also be an array of strings.