Skip to content

Instantly share code, notes, and snippets.

@aaronkelton
Created March 18, 2018 01:36
Show Gist options
  • Save aaronkelton/1927e9d7bb50d32caf1964736ba1c9a8 to your computer and use it in GitHub Desktop.
Save aaronkelton/1927e9d7bb50d32caf1964736ba1c9a8 to your computer and use it in GitHub Desktop.
Quick Solution to Bypass about_dice_project.rb
class DiceSet
attr_reader :values
def initialize; end
def roll(i)
@values = []
i.times do
@values << rand(5)+1
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment