标签: haskell monads
如何在Haskell中编写一个函数,该函数接受一个IO String并返回反转的字符串。
rev :: IO String -> IO String rev s = ...
答案 0 :(得分:2)
这将是一个简短的答案:
fmap reverse