Skip to content

Instantly share code, notes, and snippets.

@dennisvennink
Created August 4, 2014 16:01
Show Gist options
  • Save dennisvennink/e922c8c2a0f8e3ec9b53 to your computer and use it in GitHub Desktop.
Save dennisvennink/e922c8c2a0f8e3ec9b53 to your computer and use it in GitHub Desktop.
#!/usr/bin/env runhaskell
import Data.Either (either)
import Network.HTTP (simpleHTTP, getRequest, rspBody)
main :: IO ()
main = simpleHTTP (getRequest "http://www.wikipedia.org/") >>= print . either show rspBody
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment