```d
if (null)
    "1".writeln;
if ("")
    "2".writeln;
if ("" == null)
    "3".writeln;
```

Output:
2
3

How to understand this?

Reply via email to