On Tuesday, 29 March 2022 at 17:13:14 UTC, H. S. Teoh wrote: > [snip] Interesting. Thanks. I know it's annoying to endless produce performance comparisons, but it would be interesting to see the impact of selective imports and whether the imported template as in below has an impact. ``` void main() { with(imported!"std.stdio") { writeln("Hello, World!"); } } ```