On 12/11/2019 5:00 AM, Sebastiaan Koppe wrote:
> ---
> string str = "work";
> template myTemplate(string str, Args...) {}
>
> myTemplate!(i"will this %str as expected?");
> ---
>
> How will the params be passed? Aliased?
As if you wrote:
myTemplate!("will this %s as expected", str);