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.
22 lines
679 B
D
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;
|
|
}
|