Daniel Keep wrote:
> Well, I'll continue to hope that at some point it grows boolean
> expressions in version statements like "version(BSD | Linux)", but I can
> live without those :)
version (BSD)
{
version = FEATURE1;
version = FEATURE2;
}
version (linux)
{
version = FEATURE1;
}
...
version (FEATURE1)
...