profun/app/Main.hs

12 lines
299 B
Haskell

{-# LANGUAGE OverloadedStrings #-} --needed for string arguments
import Network.HTTP.Simple
import Plot
main :: IO ()
main = do
apiResponse <- httpLBS "POST http://httpbin.org/get"
putStrLn $ "Status code: " ++ show (getResponseStatusCode apiResponse)
generatePlot 20 30 25 --example