Math variables
pi
Represents the mathematical symbol $\pi$.
random
Returns a floating-point pseudo-random number in the range [0
,1
] (inclusive of 0
, but not 1
).
Use the following formula to generate an integer pseudo-random number in the range [min
,max
] (inclusive of both min
and max
):
floor(random * (1.max - 1.min + 1)) + 1.min
recommendation-more-help
7e1891ad-4d59-4355-88ab-a2e62ed7d1a3