Search

September 11
Learn »
```d
        assert(echo2("T $i, b, ${i-2}") == "writefln(\"T \", i, \", b, \", (i-2));\n...
September 11
Learn »

Yes.

https://github.com/baryluk/echo/blob/master/echo.d#L205-L209

```d
mixin(echo...
September 09
Learn »
After all, you will need it in 2 ways: 1. to learn, 2. to test...
September 09
Learn »
I made it on dlang.io which does space tabs, if its not ovisous to...
September 09
Learn »
I tested this version on my machine and the output isn't correct. It gets...
September 09
Learn »
i isn't being modified by a `*=`. its only the two ++

September 09
Learn »
This solution is really successful. I didn't think there could be any other solution...
September 09
Learn »
import std;
auto parse(char[] s)=>s[9..$-2];
void show(T,string file= __FILE...
September 09
Learn »
Thank you all for your very helpful replies and for taking the time to make...
September 09
Learn »
Try this:

```
import core.interpolation;
void show(Args...)(InterpolationHeader hdr, Args args, InterpolationFooter ftr) {
        import...
1 2 3 4
Next ›   Last »