view tests/mini/arrayops3.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[] / 2;
    assert(a[0] == 3);
    assert(a[1] == 5);
    assert(a[2] == 6);
    assert(a[3] == 8);
}