view tests/parser/for_1.d @ 156:2c5a8061aa4a

Made some tests dmd-compatible
author Anders Johnsen <skabet@gmail.com>
date Mon, 21 Jul 2008 22:13:12 +0200
parents 393a1f47a6d2
children
line wrap: on
line source


int main()
{
    int x = 0;
    for(int i = 0; i < 5; i = i + 1)
    {
        x = x + i;
    }
    return x;
}