here is my code and I am guess that the problem is that openFile returns
an IO Handle and getContents takes just a Handle.  How do I go about
fixing this?  


module Main(main) where

import IO

main = putStrLn (getContents (openFile "./joseph.txt" ReadMode))
        

Reply via email to