July 01, 2009
Hello,

Just found under DMD1.043_+Tango0.998 I can print Chinese font in console in Windows XP without  any extra effort except just saving in Unicode or UTF-8:

module test;
import tango.io.Stdout;
import tango.io.Console;

int main(char[][] args)
{
Stdout.formatln("{}","Öйú");//It works!
Cin.get();

return 0;
}