comparison tangotests/l.d @ 139:0ab29b838084 trunk

[svn r143] Fixed: a few bugs in debug information, still only line info, but should be correct files now :) Fixed: tango.io.Console seems to be working now.
author lindquist
date Tue, 22 Jan 2008 00:01:16 +0100
parents ce7b81fb957f
children
comparison
equal deleted inserted replaced
138:aeddd4d533b3 139:0ab29b838084
1 import tango.io.Console; 1 import tango.io.Console;
2 2
3 void main() 3 void main()
4 { 4 {
5 printf("enter\n");
6 assert(Cout !is null);
7 printf("newline\n");
8 Cout.newline;
9 printf("hi message\n");
10 Cout("Hi, says LLVMDC + Tango").newline; 5 Cout("Hi, says LLVMDC + Tango").newline;
11 printf("exit\n");
12 } 6 }
13
14 extern(C) int printf(char*,...);