我正在尝试创建一个无限循环,将用户的输入发送到解析函数,该函数在输入有效字符串时读取字符串的内容
main :: IO ()
main = do
putStrLn ("\n" ++ "This is blah :" ++ "\n" ++ "=================================")
putStrLn ("Valid Inputs" ++ "\n" ++ "=================================")
loop
--Infinite Loop
---------------------
loop :: IO()
loop = do
input <- getLine
if input == ""
then return()
else do
parse input
print input
loop
--Main Parsing Function (Does't work)
--------------------
--parse:: String -> String
--parse (x:xs) = if x == 'a' then 'b':parse xs
--else x:parse xs
我的问题是如何将用户输入发送到我的解析函数。我收到错误
IO t
在I 中说推断类型parse :: String -> String
将其更改为:
parse:: IO String -> String
然后给我另一个错误,说推断type [a]
等等。