Tagged Questions
9
votes
4answers
3k views
A Haskell function of type: IO String-> String
I wrote a bunch of code in Haskell to create an index of a text. The top function looks like this:
index :: String -> [(String, [Integer])]
index a = [...]
Now I want to give this function a ...