diff run/mixin_10.d @ 697:fbee62becd2c

partial repos review
author thomask
date Mon, 03 Oct 2005 09:59:08 +0000
parents 21344af2174f
children b8c0195059d9
line wrap: on
line diff
--- a/run/mixin_10.d	Sun Oct 02 20:55:57 2005 +0000
+++ b/run/mixin_10.d	Mon Oct 03 09:59:08 2005 +0000
@@ -16,7 +16,10 @@
         {
                 this(Type[] arr)
                 {
-                        foreach(Type v; arr) writefln(typeid(typeof(v)));
+                        foreach(Type v; arr)
+                        {
+                        	writefln("%s", typeid(typeof(v)));
+                        }
                 }
         }