Skip to content

Instantly share code, notes, and snippets.

@shapr
Created September 29, 2019 00:00
Show Gist options
  • Save shapr/32af6f21ca0c299826325088598d9326 to your computer and use it in GitHub Desktop.
Save shapr/32af6f21ca0c299826325088598d9326 to your computer and use it in GitHub Desktop.
module Main where
import Web.Scotty
main :: IO ()
main = do
scotty 3000 $ do
get "/foo%2C" $ html "you got the url encoded option"
get "/foo," $ html "you got the NOT YET url encoded option"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment