"Bill Baxter" <[email protected]> wrote in message news:[email protected]... > > // once at the top > version(SomeFeatureDisabled) { > } else { version = SomeFeature; } >
It would be a hell of a lot nicer if we could just write that as: version SomeFeature = !SomeFeatureDisabled; or even better, something like: version SomeFeature.default = true;
