cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+2 -3
View File
@@ -14,7 +14,6 @@ return value : noise value
:content
Generates a deterministic noise value between `from` and `to` for the given `index` and `seed`.
## Related Concepts
- PHP: `random_int()`, `mt_rand()`, and custom numeric random helpers
- JavaScript / Node.js: `Math.random()` or `crypto.getRandomValues()`-based helpers for numeric ranges
:example
print(gen_float(1, 0, 1) >= 0 ? "float\n" : "bad\n");