Created
January 30, 2013 19:30
-
-
Save pjlowry/4676004 to your computer and use it in GitHub Desktop.
roll it out
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Die | |
attr_accessor :sides | |
def initialize(number) | |
@number = number | |
end | |
def roll | |
rand(1..@number) | |
end | |
end | |
dice = Die.new(6) | |
puts dice.roll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment