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