Skip to content
Andy Gill edited this page Aug 21, 2015 · 7 revisions

{-# LANGUAGE OverloadedStrings #-}
module Main where

import Graphics.Blank

main :: IO ()
main = do
    blankCanvas 3000 $ \ context -> do
        send context $ do
            img <- newImage "images/Haskell.jpg"
            drawImage(img,[69,50])
Clone this wiki locally