Comment #0 by Jesse.K.Phillips+D — 2009-09-03T14:07:52Z
The example code for std.stdio.readln does not compile. By changing 'readln(stdin...' to 'stdin.readln(...' the code below compiles:
import std.stdio;
void main() {
char[] buf;
while (stdin.readln(buf))
write(buf);
return 0;
}