Closed johneastman closed 1 year ago
Right now, randint and randfloat both return the result of Python's random.random function if no arguments are given.
randint
randfloat
random.random
Commit: https://github.com/johneastman/boomerang/commit/03361bcef9434d0f63f08e133d3e008f214e5d5a
Right now,
randint
andrandfloat
both return the result of Python'srandom.random
function if no arguments are given.randint
, the function should return 0 or 1 based on rounded result ofrandom.random
randfloat
, simply return results ofrandom.random
.