タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

Webとhaskellに関するVoQnのブックマーク (1)

  • scotty

    scotty: Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp A Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp. {-# LANGUAGE OverloadedStrings #-} import Web.Scotty main = scotty 3000 $ get "/:word" $ do beam <- pathParam "word" html $ mconcat ["<h1>Scotty, ", beam, " me up!</h1>"] Scotty is the cheap and cheerful way to write RESTful, declarative web applicati

    VoQn
    VoQn 2012/01/07
    WAI + Warp (Ruby でいう Rack) の上に乗っけた Haskell での Web Framework. Haskell でも Sinatra みたいな事できるんだな
  • 1