Files
ldc/tango/example/console/buffered.d
Tomas Lindquist Olsen b15b3484c8 [svn r136] MAJOR UNSTABLE UPDATE!!!
Initial commit after moving to Tango instead of Phobos.

Lots of bugfixes...

This build is not suitable for most things.
2008-01-11 17:57:40 +01:00

18 lines
518 B
D

private import tango.stdc.stdio;
private import tango.io.Console;
/*******************************************************************************
Demonstrates buffered output. Console output (and Stdout etc) is
buffered, requiring a flush or newline to render on the console.
*******************************************************************************/
void main (char[][] args)
{
Cout ("how now ");
printf ("printf\n");
Cout ("brown cow").newline;
}