mirror of
https://github.com/qfpl/applied-fp-course.git
synced 2024-11-30 02:14:01 +03:00
94711343b6
But that was largely due to missing field prefixes in the Comment record for that level. Field prefixes added back in and added some doctests and changed the wording for that section to explain a bit more of what is going on.
12 lines
175 B
Haskell
12 lines
175 B
Haskell
module Main where
|
|
|
|
import Test.DocTest (doctest)
|
|
|
|
main :: IO ()
|
|
main = doctest
|
|
[ "-isrc"
|
|
, "src/FirstApp/Conf.hs"
|
|
, "src/FirstApp/DB.hs"
|
|
, "src/FirstApp/Types.hs"
|
|
]
|