Most modern languages have string interpolation i.e. possibility to put the expressions into string without use of concatenation.
Interpolated strings look like this in C#: $"Number: {number + 3}"
Would it be possible to add this kind of syntactic sugar?
Most modern languages have string interpolation i.e. possibility to put the expressions into string without use of concatenation.
Interpolated strings look like this in C#:
$"Number: {number + 3}"Would it be possible to add this kind of syntactic sugar?