view tests/parser/for_1.d @ 149:393a1f47a6d2

For loops in AST and sema. Should have correct scope and such now.
author Anders Johnsen <skabet@gmail.com>
date Mon, 21 Jul 2008 21:00:20 +0200
parents 060b6eb16db9
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;
}