summaryrefslogtreecommitdiff
path: root/HsBot/Logics
diff options
context:
space:
mode:
authorpb <pb@9f8f72e9-4bf4-416e-b76e-7d4203597157>2010-03-28 11:31:45 +0000
committerpb <pb@9f8f72e9-4bf4-416e-b76e-7d4203597157>2010-03-28 11:31:45 +0000
commit3d7e9915c4fab6f91f11b3de66ac8bbcb8b3c0c7 (patch)
tree7b9e58acf61adedef9c9f50600bde91a75e10075 /HsBot/Logics
parent80ff91aa5d6cda6adc1c97dc39b950dd7daed9d5 (diff)
git-svn-id: https://ssl.buetow.org/repos/hsbot/trunk@51 9f8f72e9-4bf4-416e-b76e-7d4203597157
Diffstat (limited to 'HsBot/Logics')
-rw-r--r--HsBot/Logics/Dummy.hs10
1 files changed, 10 insertions, 0 deletions
diff --git a/HsBot/Logics/Dummy.hs b/HsBot/Logics/Dummy.hs
new file mode 100644
index 0000000..a873f8a
--- /dev/null
+++ b/HsBot/Logics/Dummy.hs
@@ -0,0 +1,10 @@
+module HsBot.Logics.Dummy (dummyRun) where
+
+import HsBot.Base.Env
+
+dummyRun :: String -> SendMessage -> Env -> IO Env
+dummyRun str sendMessage env = do
+ --sendMessage "Hello World"
+ putStrLn str
+ return (env)
+