Skip to content

Instantly share code, notes, and snippets.

@na0w0
Created June 23, 2012 00:28
Show Gist options
  • Save na0w0/2975973 to your computer and use it in GitHub Desktop.
Save na0w0/2975973 to your computer and use it in GitHub Desktop.
class Dice
def initialize
@list = []
end
def shake
@list << rand(6) + 1
p @list.last
end
def list
p @list
end
end
d = Dice.new
d.shake
d.shake
d.shake
d.shake
d.shake
d.list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment