<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On 1 April 2013 19:49, DLearner <span dir="ltr"><<a href="mailto:bm.email01@gmail.com" target="_blank">bm.email01@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On Monday, 1 April 2013 at 18:36:52 UTC, Iain Buclaw wrote:<br>
</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">
On 1 April 2013 19:13, Dleaner <<a href="mailto:bm.email01@gmail.com" target="_blank">bm.email01@gmail.com</a>> wrote:<br>
<br>
</div><div><div class="h5"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I was using writef("escape string" ~ "Display string") to try to simulate<br>
a console, but noticed that the writes are only flushed when a newline is<br>
present.<br>
<br>
Is there a 'flush' function that works with stdio?<br>
'flush()' seems unkown to the compiler, and 'fflush()' seems to be for<br>
files, not for writing to the screen.<br>
<br>
</blockquote>
<br>
<br></div></div>
You mean stdout.flush() ?<br>
</blockquote>
<br>
Tried your idea, error message was:<br>
"No property 'flush' for type '_iobuf'<br>
</blockquote></div><br></div><div class="gmail_extra">stdout should be a struct File if you imported std.stdio;<br><br><br>As if looks like the C stdout is taking precedence, you can either force the use of it via std.stdio.stdout.flush() , or call fflush(stdout).<br clear="all">
</div><div class="gmail_extra"><br></div><div class="gmail_extra">Regards<br></div><div class="gmail_extra">-- <br>Iain Buclaw<br><br>*(p < e ? p++ : p) = (c & 0x0f) + '0';
</div></div>