We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
{-# LANGUAGE OverloadedStrings #-} module Main where import Graphics.Blank main :: IO () main = do blankCanvas 3000 $ \ context -> do send context $ do img1 <- newImage "images/Haskell.jpg" img2 <- newImage "images/House.jpg" drawImage(img1,[69,50,97,129]) drawImage(img2,[200,50])