Hey JCL,

it seems like the approach to ("-->") operator is broken in the latest A8 version, is it possible to get that fixed in the next update? Test case:

Code:
#include <acknex.h>

void main()
{
    int i = 10;
    while(i --> 0)
    {
        printf("%i", i);
    }
}



According to the C standard, I would expect an output of "9, 8, 7, 6, 5, 4, 3, 2, 1, 0", but the 0 is never printed.

Last edited by JustSid; 02/28/13 17:20.

Shitlord by trade and passion. Graphics programmer at Laminar Research.
I write blog posts at feresignum.com