Skip to content

Instantly share code, notes, and snippets.

@amothic
Created July 6, 2013 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amothic/5938383 to your computer and use it in GitHub Desktop.
Save amothic/5938383 to your computer and use it in GitHub Desktop.
{-# LANGUAGE OverloadedStrings #-}
import Network.Wai
import Network.HTTP.Types (status200)
import Network.Wai.Handler.Warp (run)
application _ = return $
responseLBS status200 [("Content-Type", "text/plain")] "Hello World"
main = run 3000 application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment