random float for random
Generate a random float within a range [min..max].
Signature
> random float {flags} (range)
Parameters
range: Range of values.
Input/output types:
| input | output | 
|---|---|
| nothing | float | 
Examples
Generate a default float value between 0 and 1
> random floatGenerate a random float less than or equal to 500
> random float ..500Generate a random float greater than or equal to 100000
> random float 100000..Generate a random float between 1.0 and 1.1
> random float 1.0..1.1