lambdabot-misc-plugins-5.0: src/Lambdabot/Plugin/Misc/Hello.hs
--
-- | Hello world plugin
--
module Lambdabot.Plugin.Misc.Hello (helloPlugin) where
import Lambdabot.Plugin
helloPlugin :: Module ()
helloPlugin = newModule
{ moduleCmds = return
[ (command "hello")
{ aliases = ["goodbye"]
, help = say "hello/goodbye <arg>. Simplest possible plugin"
, process = \xs -> say ("Hello world. " ++ xs)
}
]
}