Skip to content

Instantly share code, notes, and snippets.

@clarknelson
Created June 4, 2014 03:55
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 clarknelson/d6e85a16a35db142002b to your computer and use it in GitHub Desktop.
Save clarknelson/d6e85a16a35db142002b to your computer and use it in GitHub Desktop.
9 class DiceSet
10 :attr_accessor :values
11 def roll(set)
12 @values = set
13 end
14 end
---
irb
---
dice = DiceSet.new
dice.roll(4)
dice.values #NoMethodError
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment