Skip to content

Instantly share code, notes, and snippets.

@nahurst
Created February 12, 2012 02:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nahurst/1805841 to your computer and use it in GitHub Desktop.
Save nahurst/1805841 to your computer and use it in GitHub Desktop.
More convenient random ranges
# Ruby 1.9.2
Random.new.rand(10..15) # 10, 11, 12, 13, 14, 15
Random.new.rand(10...15) # 10, 11, 12, 13, 14
# Ruby >1.9.2
rand(10..15)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment