
3 Jul
2006
3 Jul
'06
12:33 p.m.
On 03/07/06, Stefan Holdermans
test s | ... | ... | otherwise = error $ "The file contains: " ++ s
Or perhaps, ... | otherwise = error $ "The file contains: " ++ show s Then all the newlines and other control characters will be printed in their escaped form, making it more obvious. -- -David House, dmhouse@gmail.com