view test/stdiotest2.d @ 194:8ee2c46ff938 trunk

[svn r210] Fixed: last commit was broken.
author lindquist
date Mon, 12 May 2008 18:48:09 +0200
parents 5825d48b27d1
children
line wrap: on
line source

module stdiotest2;
import std.stdio;
void main()
{
    int[4] v = [1,2,3,4];
    {
        writefln("%s", v);
        {
            int[] dv = v;
            {writefln("%s", dv);}
        }
    }

    {
        writefln(v);
        {
            //int[] dv = v;
            //{writefln(dv);}
        }
    }
    //writefln(1,2,3,4.56,"hello",v);
}