When running this Haskell program using runghc:
import Network.HTTP
main = simpleHTTP (getRequest "https://stackoverflow.com")
>>= getResponseBody >>= putStrLn
I get the error message
printso.hs: user error (https not supported)
I don't want to switch to unencrypted HTTP -- how can I use Network.HTTP with SSL/TLS?