roll.rb 102 B

123456789
  1. class Roll
  2. include Cinch::Plugin
  3. match /roll/
  4. def execute(m)
  5. m.reply rand(1..6)
  6. end
  7. end