diff test/imports2.d @ 16:860524276608 trunk

[svn r20] * Added a simple compiletime std.stdio by downs * Added a simple lphobos of std.stdio (so far) * 'tester.sh run' now links to lphobos
author lindquist
date Wed, 03 Oct 2007 05:41:15 +0200
parents
children 6c6cd097bcdf
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/imports2.d	Wed Oct 03 05:41:15 2007 +0200
@@ -0,0 +1,6 @@
+module test;
+import std.stdio;
+
+void main() {
+    writefln("Hello world!"[]);
+}