mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
11 lines
192 B
R
11 lines
192 B
R
|
integer (integer x, integer y, integer z) foo =
|
||
|
{
|
||
|
if (x || !y && z) {
|
||
|
return x || y && z;
|
||
|
} else {
|
||
|
for (x = 0; (x || y) && z < 3; x++)
|
||
|
return (x || y && z) ? 4 : 9;
|
||
|
}
|
||
|
return !x;
|
||
|
};
|