view tests/parser/assign_1.d @ 126:c3b24e7e8cf8

Carius changes to the parser. Parsing attributes, lexing many keywords(not all yet).
author Anders Johnsen <skabet@gmail.com>
date Tue, 27 May 2008 10:32:31 +0200
parents
children
line wrap: on
line source



int main()
{
    int x = 0;
    x  = 2;
    x += 5;
    return x;
/*    x -= 2;
    x *= 3;
    x /= 4;
    x %= 3; */
}