diff --git a/dice.rb b/dice.rb new file mode 100644 index 0000000..735a6cf --- /dev/null +++ b/dice.rb @@ -0,0 +1,5 @@ +class Dice + def self.roll + rand(1..6) + end +end