For a simple lone symbol, interp should allow simplifying this... ``` d auto foo = 42; auto str = mixin(interp!"Value is ${foo} now"); ``` ...down to... ``` d auto foo = 42; auto str = mixin(interp!"Value is $foo now"); ```