diff tango/example/console/hello.d @ 132:1700239cab2e trunk

[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.
author lindquist
date Fri, 11 Jan 2008 17:57:40 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tango/example/console/hello.d	Fri Jan 11 17:57:40 2008 +0100
@@ -0,0 +1,21 @@
+/*******************************************************************************
+
+        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;
+}