scratch/output/Scratch/fr/blog/Yesod-tutorial-for-newbies/code/Echo.hs
Yann Esposito 70314df976 Recompiled
2012-05-02 17:43:56 +02:00

8 lines
157 B
Haskell

module Handler.Echo where
import Import
getEchoR :: Text -> Handler RepHtml
getEchoR theText = do
defaultLayout $ do
[whamlet|<h1>#{theText}|]