mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
afdbd90bc1
:)
9 lines
174 B
R
9 lines
174 B
R
float (float x, float y, float z) foo =
|
|
{
|
|
// return x || (y && z);
|
|
// return (x || y) && z;
|
|
// return x || y && z;
|
|
// return !x & y;
|
|
return x * y + z;
|
|
return x + y * z;
|
|
};
|