Hope, D will go on to the next version,
the compiler will release up to v10!
Many happy returns of the (D)ay...🥳
```d
enum Dlang99 = 4026728633831507;
union Magic
{
long data;
char[8] bits;
string toString()
{
return bits;
}
}
auto magic = Magic(Dlang99<<10|'D');
magic.writefln!"..::%s::..";
```