The following will not compile.
void testWhile() { int x = 20; while (x-- > 4) { Print(x); } }
The following will compile.
void testWhile() { int x = 20; while (--x > 3) { Print(x); } }
The following will not compile.
void testWhile() { int x = 20; while (x-- > 4) { Print(x); } }
The following will compile.
void testWhile() { int x = 20; while (--x > 3) { Print(x); } }
void testWhile() { int x = 20; while (x-- > 4) { Print(x); } }
Hello antihax.
The issue has been fixed internally and the fix will appear in one of the upcoming updates.
Regards,
Geez