0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2024-12-23 19:21:14 +00:00
quakeforge/tools/qfcc/test/shortcircuit.r

10 lines
98 B
R
Raw Normal View History

void (integer x, integer y) foo =
{
if (x && y)
x += 2;
if (0)
x -= 1;
if (1)
x += 2;
};