1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-11-26 06:38:40 +03:00

Level07: throwLeft -> liftEither

This commit is contained in:
Simon Holywell 2018-11-29 14:08:19 +10:00
parent 3e1f0c3f07
commit 6a11f48a59

View File

@ -100,6 +100,6 @@ liftEither
:: Either Error a
-> AppM a
liftEither =
error "throwLeft not implemented"
error "liftEither not implemented"
-- Move on to ``src/Level07/DB.hs`` after this