jops.rb 177 B

12345678910
  1. class Jops
  2. include Cinch::Plugin
  3. match /jops/
  4. def execute(m)
  5. cibo = ["tigelle", "crescentine"]
  6. m.reply "jops: andiamo a mangiare le "+cibo.sample+" ?"
  7. end
  8. end