module HelloModule where -- | This is a Doctest comment. -- >>> helloThing "Doctest." -- "Hello Doctest." -- | This test fails. It had an extra space. -- >>> helloThing "Doctest." -- "Hello Doctest." helloThing :: String -> String helloThing = (++) "Hello "