On Dec 08, 2016, at 02:01 AM, Walter Bright via phobos <phobos@puremagic.com> wrote:

On a programming note, I do try to adjust symbol names and conditionals to not
use negation, and

version (!Feature)

is deliberately not supported :-)

You mean:

version (!!DisableFeature)

:)

Or my favorite from Ruby:

unless not !foo
  # some code
end unless not !foo

:D

--
/Jacob Carlborg