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 ...
2
votes
2answers
424 views

Haskell - readFile catch exception

I am trying to read file in Haskell with exception catching but cant get working. The code looks like: module Main where import System.Environment import System.IO import System.Exit ...
0
votes
3answers
870 views

Haskell readFile type problem

I have some troubles with Haskell type system. Situation: Following program is taking list of filenames on the cmdline For all filename it reads its content using the function readFile Content of ...