mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
18 lines
518 B
D
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;
|
|
}
|