static inline double test_function()

in native/FunctionsNative.cpp [16:29]


static inline double test_function(double a, double b)
{
#if !defined(CODEVERSION)
#error The CODEVERSION variable is undefined.
#endif
#pragma message ("The value of CODEVERSION: " XSTR(CODEVERSION))
#if CODEVERSION == 1
    return a + b;
#elif CODEVERSION == 2
    return a * b;
#else
#error Unsupported CODEVERSION value.
#endif
}