10 lines
177 B
Ruby
10 lines
177 B
Ruby
class Jops
|
|
include Cinch::Plugin
|
|
|
|
match /jops/
|
|
|
|
def execute(m)
|
|
cibo = ["tigelle", "crescentine"]
|
|
m.reply "jops: andiamo a mangiare le "+cibo.sample+" ?"
|
|
end
|
|
end
|