On Tuesday, 2 September 2014 at 21:13:04 UTC, monarch_dodra wrote:

What's wrong with reading line by line, but processing the characters in said lines 1 by 1? That works "out of the box".

import std.stdio;
import std.conv;
import core.vararg;

void main() {

string aa = "abc „";
        foreach (aaa; aa)
                writeln(aaa);

}


output :

a
b
c

�
�
�

Linux 64 bit netrunner, console font set to Raleway,, then to Quivira - both supports the character in discussion.

Reply via email to