$$QUERY Math f:[f:Float1] times [f:Float2] qMathMulFloat Multiply floats Multiplies two floating-point numbers and returns the result Parameters: Float1, Float2: the numbers to multiply $$END */
| 5963 | $$END |
| 5964 | */ |
| 5965 | float qMathMulFloat(float f0, float f1) { return f0 * f1; } |
| 5966 | |
| 5967 | /* |
| 5968 | $$QUERY |