view test/arrays4.d @ 52:0c77619e803b trunk

[svn r56] Initial support for TypeInfo. Enums not work. Several other bugfixes.
author lindquist
date Tue, 23 Oct 2007 05:55:12 +0200
parents 8b0e809563df
children c44e6a711885
line wrap: on
line source

module arrays4;
import std.stdio;
void main()
{
    int[] arr;
    arr ~= 3;
    assert(arr.length == 1);
    assert(arr[0] == 3);
    arr ~= 5;
    assert(arr.length == 2);
    assert(arr[0] == 3);
    assert(arr[1] == 5);
    writefln(arr);
}