Skip to content

Latest commit

 

History

History
33 lines (17 loc) · 465 Bytes

Random.float.float.md

File metadata and controls

33 lines (17 loc) · 465 Bytes

Random(float, float)

Returns a random float between min and max.

float random(float min, float max)

Parameters

min

Type: float

The minimum number (inclusive).

max

Type: float

The maximum number (exclusive).

Returns

float

The randomly selected number.

Remarks

  • Do not use in inline variables, may return the same number.