view tango/example/console/hello.d @ 303:4aa2b6753059 trunk

[svn r324] Small indentation fixes. Added end of line to complex.cpp.
author ChristianK
date Wed, 25 Jun 2008 20:42:30 +0200
parents 1700239cab2e
children
line wrap: on
line source

/*******************************************************************************

        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;
}