Created
September 29, 2019 00:00
-
-
Save shapr/32af6f21ca0c299826325088598d9326 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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