Bug in DDT

Dennis Ritchie via Digitalmars-d-ide digitalmars-d-ide at puremagic.com
Fri Apr 17 21:24:37 PDT 2015


Readln function is activated before the writeln("test"):

-----
import std.stdio;

void main() {
	
	writeln("test");
	
	string s = readln;
	
	writeln(s);
}
-----


More information about the Digitalmars-d-ide mailing list