scriptlike
scriptlike copied to clipboard
interp's curly braces should be optional for a lone symbol
For a simple lone symbol, interp should allow simplifying this...
auto foo = 42;
auto str = mixin(interp!"Value is ${foo} now");
...down to...
auto foo = 42;
auto str = mixin(interp!"Value is $foo now");