From fade23f3c43809df8fe604cba8a7069e6cbdd305 Mon Sep 17 00:00:00 2001 From: Travis CI <> Date: Thu, 8 Apr 2021 04:50:01 +0000 Subject: [PATCH] Deploy to GitHub Pages: --- modules/core/num.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/core/num.html b/modules/core/num.html index 438a081e..460ab752 100644 --- a/modules/core/num.html +++ b/modules/core/num.html @@ -100,6 +100,12 @@
The largest representable numeric value.
The smallest positive representable numeric value.
+The largest integer that Wren can safely represent. It’s a constant value of 9007199254740991.
This is relevant because Wren uses double precision floating-point format
+ for numbers, which can only safely represent integers between -(253 - 1) and 253 - 1.
The smallest integer Wren can safely represent. It’s a constant value of -9007199254740991.
The absolute value of the number.