On 1/13/24 04:36, Walter Bright wrote:
>
> I don't know what "interpolate an expression sequence" means. As for
> things getting out of sync, execi() with CTFE can reject a mismatch
> between format specifiers and arguments.
Oh, not at all.
```d
import std.stdio;
alias Seq(T...)=T;
void main(){
writefln(i"$(Seq!(1,2)) %s");
}
```