On Sunday 13 September 2015 15:32, xky wrote:
> [ pipe.d ]:
> ======================================================================
> import std.process;
> import std.stdio;
>
> void main(){
> auto info = pipeProcess("child.exe");
> scope(exit) wait(info.pid);
>
> info.stdin.writeln("data to send to the process");
> info.stdin.close();
>
> foreach(line; stdout.byLine){
I think it should be `info.stdout.byLine` here.
> writeln("Received ", line, " from child.");
> }
> }
> ======================================================================