--------------------------------------------
// Output: The number 21 doubled is 42!
int num = 21;
writeln(
mixin(interp!"The number ${num} doubled is ${num * 2}!")
);
--------------------------------------------
What about:
void echo(T)()
{
writeln(mixin(interp!T));
}
At least it saves some typing.
