summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpb <pb@9f8f72e9-4bf4-416e-b76e-7d4203597157>2010-02-28 16:40:25 +0000
committerpb <pb@9f8f72e9-4bf4-416e-b76e-7d4203597157>2010-02-28 16:40:25 +0000
commite01c6ae44353d1c02af9f061e9072d94343ddbfb (patch)
treeb4d1a4ff9847a7a0b2ba1681ce162e7285f8e798
parent8b3eef61dc3845134c09f539130670f57c95d02b (diff)
git-svn-id: https://ssl.buetow.org/repos/hsbot/trunk@19 9f8f72e9-4bf4-416e-b76e-7d4203597157
-rw-r--r--HsBot.hs7
1 files changed, 3 insertions, 4 deletions
diff --git a/HsBot.hs b/HsBot.hs
index 65e3670..eaf5f83 100644
--- a/HsBot.hs
+++ b/HsBot.hs
@@ -9,7 +9,7 @@ import System
-- Static configurations
version :: String
-version = "0.0"
+version = "v0.0"
database :: String
database = "hsbot.db"
@@ -192,8 +192,7 @@ loop conf =
("!p", "Prints configuration", (\x -> do { putStrLn $ show x; loop' x } ) ),
("!s", "Saves configuration", (\x -> do { putStrLn "Saving current xiguration"; save x; loop' x } ) ),
("!q", "Quits", (\x -> do { putStrLn "Good bye"; save x; exitWith ExitSuccess } ) )]
- -- Extract the Conf from the IO Monad and run the loop
- in do conf' <- conf
+ in do conf' <- conf -- Extract Conf from the IO Monad and run loop' with pure input
loop' conf'
-- Will be connected to IRC input in future instead of getLine
@@ -202,7 +201,7 @@ readInput = getLine
main :: IO ()
main = do
- putStrLn $ "Welcome to " ++ version ++ " (Enter !h for help)"
+ putStrLn $ "Welcome to HsBot " ++ version ++ " (Enter !h for help)"
loop load
save :: Conf -> IO ()