Created attachment 1092
workflow
Windows, console.
source "d_echo.d":
------------------
module main;
import std.stdio;
int main(string[] argv)
{
writeln(argv[1]);
return 0;
}
-----------------
Command work with only asci characters. see attachment
Comment #1 by dlang-bugzilla — 2014-10-25T02:03:54Z
If you want to see UTF-8 text, you need to set output console code page ("chcp 65001" or SetConsoleOutputCP(65001)).
Comment #2 by dlang-bugzilla — 2014-10-25T02:05:56Z