Small confusion with monads

2001-10-04 Thread Dmitry Olyenyov
Hello! Can anybody help me with writing function that does following: I have the list [file1,file2,file3] and I need the function to return me the list of contents of these files. contents :: [String] - [String] contents (file:files) = do c - readFile file Thanks in advance for

Re: Small confusion with monads

2001-10-04 Thread Saswat Anand
Unsafely you can write: import IOExts contents :: [String] - [String] content = unsafePerformIO . sequence . (map readFile) Saswat ___ Haskell-Cafe mailing list [EMAIL PROTECTED] http://www.haskell.org/mailman/listinfo/haskell-cafe