Skip to content

Instantly share code, notes, and snippets.

@abrongersma
Created September 3, 2012 22:19
Show Gist options
  • Save abrongersma/3614116 to your computer and use it in GitHub Desktop.
Save abrongersma/3614116 to your computer and use it in GitHub Desktop.
Jeremy
class Die
attr_accessor :faces
def initialize(faces)
@faces = faces
end
def sides
@faces
end
def roll
self.rand(1..6)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment