view tango/example/console/hello.d @ 143:336ec4f4bbb3 trunk

[svn r147] tango.io.Console is now working. True this time :) Yay!
author lindquist
date Fri, 25 Jan 2008 01:42:36 +0100
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;
}