view tango/example/console/hello.d @ 373:d1574e142e93 trunk

[svn r394] Fixed the new DtoNullValue function
author lindquist
date Tue, 15 Jul 2008 15:16:56 +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;
}