Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Create a random number in Ruby (See related posts)

Return a value from 0 to 5:
rand(6)


Return a value between 0 and 1:
rand


Resources:
- Module: Kernel [ruby-doc.org]

You need to create an account or log in to post comments to this site.


Click here to browse all 7716 code snippets

Related Posts