main = simpleHTTP nullConf $ ok "Hello, World!"
i am a newbie trying out haskell with happstack-server
. In this hello world program, i got these doubts:
1) Server's default configuration, nullConf
, where is it defined? at least it is not there in $HOME/.cabal/Happstack/Server.hs
2) What does $
symbol in the middle of function arguments mean?
3) Is there any way, i can force cabal to download source libraries instead of compiled haskell binaries? That will help me a lot in source code debugging.