mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
afdbd90bc1
:)
10 lines
192 B
R
10 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;
|
|
};
|