comparison tangotests/l.d @ 133:44a95ac7368a trunk

[svn r137] Many fixes towards tango.io.Console working, but not quite there yet... In particular, assertions has been fixed to include file/line info, and much more!
author lindquist
date Mon, 14 Jan 2008 05:11:54 +0100
parents
children ce7b81fb957f
comparison
equal deleted inserted replaced
132:1700239cab2e 133:44a95ac7368a
1 import tango.io.Console;
2
3 void main()
4 {
5 printf("enter\n");
6 assert(Cout !is null);
7 Cout("Hi, says LLVMDC + Tango").newline;
8 printf("exit\n");
9 }
10
11 extern(C) int printf(char*,...);