belka-ew
belka-ew
```d void update() { .notify; } ``` gets formatted as ```d void update() { ____ .notify; } ``` with: ```sh ./bin/dfmt test.d --keep_line_breaks=true ``` Undescores are spaces. Probably in one...
The DMD frontend version used by DLP is starting to show its age. I'm currently have the problem that I can't use std.sumtype. Are there any plans to update the...
Consider two files: a.d: ```d module a; import std.datetime; class A { public void f() { synchronized (this) { } } } ``` b.d: ```d module b; class B {...
# 5.12 > We saw the Maybe type, which is used **to to** define optional values, earlier in the book. # 6.6 > requiring the compiler **to to** find a...