view test/arrays4.d @ 49:e5c4bece7fa1 trunk

[svn r53] added basic support for delegate literals. if you access outer variables you get a broken module
author lindquist
date Fri, 19 Oct 2007 17:43:46 +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);
}