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 help!                           
-- 
  With best regards, Dmitry

_______________________________________________
Haskell-Cafe mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to