Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Random as a class

  • next_float
  • next_int
  • next_bool
  • hex
  • base64
rnd = Random.new
puts rnd.next_float
puts rnd.next_int
puts rnd.next_bool
puts rnd.hex(3) # 6 characters from hex values
puts rnd.base64(2)
0.17048389661361377
-258843089
false
ba753d
Fd4=