Global
random
Génère un entier aléatoire entre min et max (inclus).
Génère un entier aléatoire entre min et max (inclus).
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Génère un entier aléatoire entre min et max (inclus).
random(min, max)
| Nom | Type | Description |
|---|---|---|
min | int | Valeur minimale (incluse). |
max | int | Valeur maximale (incluse). |
| Type | Description |
|---|---|
int | Entier aléatoire entre min et max. |
local r = random(1, 10)