$ is another obvious choice (eg in shell expansion)
but # could also be good as it's very much unused in D.


On Thu, Oct 31, 2013 at 2:37 PM, Jacob Carlborg <doob@me.com> wrote:
On 2013-10-31 22:24, Timothee Cour wrote:
the proposed new syntax
r{var1=@a; and var2=@foo}

is replaced by a tuple:
("var1=", a, "; and var2=", foo)
where @ denotes escaping symbols.

@ itself be escaped with \@.

optionally, expressions can be incorporated:
r{a2=@(a*2); and fooU=@(foo.toUpper)}

Would @ be the best symbol for this. It might get confusing with UDA's.

--
/Jacob Carlborg