view test.td @ 6:606a57c90a0b

Now lexing == as Equals
author johnsen@johnsen-desktop
date Fri, 18 Apr 2008 12:24:14 +0200
parents 2c5a8f4c254a
children 2ce5209f1954 2e1069ee21af
line wrap: on
line source


int x = 4;

int main()
{
    long var1 = 1;
    short var2 = 2;
    return nice(var1, var2);
}

int nice(long s, short t)
{
    byte x = 5 + t;
    if (x == 0)
        if (s)
            t = 5 + 1 * 5 * s + t;
    return 2 * (t + -1) - x;
}