view tests/parser/for_1.d @ 147:060b6eb16db9

Parsing for-loops to some extend.
author Anders Johnsen <skabet@gmail.com>
date Mon, 21 Jul 2008 19:17:56 +0200
parents
children 393a1f47a6d2
line wrap: on
line source


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