--
You received this message because you are subscribed to the Google Groups "scala-sips" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-sips+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
val qual = "some"
s"I am $`qual`body"
Where short form is invalid because there's no non-alphanumeric character to delimit the identifier from subsequent text:
s"I am $qualbody" //invalid
s"I am ${qual}body" //current solution, but less readable than backticks
s"I am $`qual`body"
to imply that it may not signify its apparent meaning
--
You received this message because you are subscribed to the Google Groups "scala-sips" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-sips+...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "scala-sips" group.
To unsubscribe from this group and stop receiving emails from it, send an email to scala-sips+...@googlegroups.com.