26 Nov
2008
26 Nov
'08
4:12 p.m.
Hi, getMyLine :: IO [Char] getMyLine = do c <- getChar if(c == '\n') then return "" else cs <- getMyLine return [c]