view tests/mini/arrayops2.d @ 1651:cb960b882ca3 default tip

bindings were moved to dsource.org/projects/bindings/
author Moritz Warning <moritzwarning@web.de>
date Thu, 20 May 2010 20:05:03 +0200
parents 06576ece1a1b
children
line wrap: on
line source

void main()
{
    int[4] a = [1,2,3,4];
    int[4] b = [5,6,7,8];
    a[] += b[];
    assert(a[0] == 6);
    assert(a[1] == 8);
    assert(a[2] == 10);
    assert(a[3] == 12);
}