lambdabot-reference-plugins-5.0: src/Lambdabot/Plugin/Reference/OEIS.hs
-- | Look up sequences in the Online Encyclopedia of Integer Sequences
-- Based on the Math.OEIS library
module Lambdabot.Plugin.Reference.OEIS (oeisPlugin) where
import Lambdabot.Plugin
import Math.OEIS
oeisPlugin :: Module ()
oeisPlugin = newModule
{ moduleCmds = return
[ (command "oeis")
{ aliases = ["sequence"]
, help = say "oeis <sequence>. Look up a sequence in the Online Encyclopedia of Integer Sequences"
, process = ios80 . fmap concat . lookupOEIS
}
]
}