4 Jul
2006
4 Jul
'06
12:33 a.m.
On 03/07/06, Stefan Holdermans <stefan@cs.uu.nl> wrote:
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