@hackage hack2009.4.23

a sexy Haskell Webserver Interface

Hack: a sexy Haskell Webserver Interface ======================================== Hack is a brain-dead port of the brilliant Ruby Rack http://rack.rubyforge.org/ webserver interface. What does a Hack app look like module Main where import Hack import Hack.Handler.Kibro hello :: Application hello = env -> return $ Response { status = 200 , headers = [ ("Content-Type", "text/plain") ] , body = "Hello World" } main = run hello