8 lines
140 B
Text
8 lines
140 B
Text
# Seed the RNG
|
|
:random.seed(:erlang.now())
|
|
|
|
# Integer in the range 1..10
|
|
:random.uniform(10)
|
|
|
|
# Float between 0.0 and 1.0
|
|
:random.uniform()
|