vty/test/yi_issue_264.hs
coreyoconnor f6c3cbfa01 adding example of Graphics.Vty.Inline to test
Ignore-this: e82f6a3b8eec33ab55fd04a51f4d9873

darcs-hash:20091228233218-f0a0d-345ddcbee616acc4f39d9d12393bdea5982f34d9.gz
2009-12-28 15:32:18 -08:00

13 lines
314 B
Haskell

module Main where
import Graphics.Vty
import Control.Exception
catchLog = handle (\except -> do putStrLn $ show (except :: IOException))
main = do
vty <- mkVty
catchLog $ update vty pic { pImage = empty, pCursor = NoCursor }
catchLog $ update vty pic { pImage = empty, pCursor = NoCursor }
shutdown vty