Am Wed, 01 Jan 2014 07:27:54 +0000 schrieb "Meta" <jared...@gmail.com>:
> Your code is working correctly. D's chars, for all values up to > 255, are the same as the ASCII character set. UTF-8 reuses the ASCII mapping which is only defined from 0 to 127. Everything above is not ASCII and 255 is in fact not even defined for UTF-8, which is why it was chosen as the initializer for char in D. -- Marco