The problem that took him 5 years to fix in C++, I solved in a minute with D

rikki cattermole rikki at cattermole.co.nz
Thu Mar 10 02:21:47 UTC 2022


We can shorten that even further!

```d
import std.range : repeat, join;

pragma(msg, "hello world, ".repeat(3).join);
```


More information about the Digitalmars-d mailing list