nascent wrote:
> At least I believe this is a bug.
>
> writefln("%c", 's');
>
> gives me a format exception.
This is not a bug. Please refer to the string format spec at
http://www.digitalmars.com/d/phobos/std_format.html.
%c is not supported. Use %s instead.