aboutsummaryrefslogtreecommitdiff
path: root/docs/nums.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-11-03 22:37:48 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-11-03 22:37:48 -0500
commitfc9a6f1416be514e9d26b301d05e7e347560560b (patch)
tree7d61cc3657c36dde05135f17dbf5923cff177abf /docs/nums.md
parent52e3d3fe6f2c3e5051affe155fed364d1a5d623c (diff)
Add RNGs to the language
Diffstat (limited to 'docs/nums.md')
-rw-r--r--docs/nums.md24
1 files changed, 0 insertions, 24 deletions
diff --git a/docs/nums.md b/docs/nums.md
index 9072f86a..5f9b5285 100644
--- a/docs/nums.md
+++ b/docs/nums.md
@@ -991,30 +991,6 @@ The next representable value after `x` in the direction of `y`.
---
-### `random`
-
-**Description:**
-Generates a random floating-point number.
-
-**Signature:**
-```tomo
-func random(->Num)
-```
-
-**Parameters:**
-None
-
-**Returns:**
-A random floating-point number between 0 and 1.
-
-**Example:**
-```tomo
->> Num.random()
-= 0.4521
-```
-
----
-
### `rint`
**Description:**