xxxxxxxxxx
import std;
void main()
{
immutable bool[string] myOptions = ["one": true, "two": false];
static if (myOptions["one"])
pragma(msg, "Yep");
}