1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-11-26 14:43:53 +03:00
applied-fp-course/level01
2017-09-12 13:41:26 +10:00
..
bin Added -fwarn-missing-import-lists to GHC options. Fixed resulting errors 2017-09-12 13:28:27 +10:00
src/FirstApp Added -fwarn-missing-import-lists to GHC options. Fixed resulting errors 2017-09-12 13:28:27 +10:00
changelog.md change changelog files to lowercase 2017-09-01 11:17:26 +10:00
default.nix Added two stages. 2017-08-09 13:06:21 +10:00
level01.cabal Merge branch 'master' of gitlab.com:qfpl/applied-fp-course 2017-09-12 13:41:26 +10:00
LICENCE update copyright notice 2017-09-12 11:51:26 +10:00
README.md Wording updates 2017-09-05 11:34:56 +10:00
Setup.hs Added two stages. 2017-08-09 13:06:21 +10:00
shell.nix Added two stages. 2017-08-09 13:06:21 +10:00

Level 01

The purpose of this exercise to whet our appetite a bit by spinning up an ultra basic web app. The focus will be on reading the Hackage documentation for the Wai framework. Consult the src/FirstApp/Main.hs to see the parts that are missing and what we need from the Wai package to make our "Hello, World!" application run.

Our "application" will respond to ALL incoming requests with a 200 status code response and the message "Hello, World!".