lambdabot-4.0: Plugin/Hello.hs
--
-- | Hello world plugin
--
module Plugin.Hello where
PLUGIN Hello
instance Module Hello () where
moduleCmds _ = ["hello","goodbye"]
moduleHelp _ = "hello/goodbye <arg>. Simplest possible plugin"
process_ _ xs = return ["Hello world. " ++ xs]