Files
ldc/tango/example/console/hello.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

22 lines
679 B
D

/*******************************************************************************
Hello World using tango.io
This illustrates bare console output, with no fancy formatting.
Console I/O in Tango is UTF-8 across both linux and Win32. The
conversion between various unicode representations is handled
by higher level constructs, such as Stdout and Stderr
Note that Cerr is tied to the console error output, and Cin is
tied to the console input.
*******************************************************************************/
import tango.io.Console;
void main()
{
Cout ("hello, sweetheart \u263a").newline;
}