1
0
mirror of https://github.com/janet-lang/janet synced 2025-04-04 22:36:55 +00:00

Merge pull request #447 from cellularmitosis/nan

math/nan
This commit is contained in:
Calvin Rose 2020-07-01 15:47:13 -05:00 committed by GitHub
commit 5351a6b2ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -499,5 +499,11 @@ void janet_lib_math(JanetTable *env) {
JDOC("The number representing positive infinity"));
janet_def(env, "math/-inf", janet_wrap_number(-INFINITY),
JDOC("The number representing negative infinity"));
#ifdef NAN
janet_def(env, "math/nan", janet_wrap_number(NAN),
#else
janet_def(env, "math/nan", janet_wrap_number(0.0/0.0),
#endif
JDOC("Not a number (IEEE-754 NaN)"));
#endif
}