package wip

This commit is contained in:
2026-01-23 16:47:56 +11:00
parent f6bfa6b8fd
commit 904ef85f54
18 changed files with 259 additions and 6 deletions

View File

@@ -0,0 +1,22 @@
# math_Random
Generate a random integer in the range provided.
**IMPORTANT:** math_Random is **NOT** cryptographically secure! Use the `cryptography` library instead!
If you want to generate a random double, use `math_RandomDouble`.
## Arguments
- min (int): Smallest possible number
- max (int): Largest possible number
## Returns
randomNumber (int): A random number in the range provided
## Example
```python
call !math_Random 1 6 &dice
println $dice # 3
call !math_Random 1 6 &dice
println $dice # 2
call !math_Random 1 6 &dice
println $dice # 6
...
```