mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-29 08:49:40 +03:00
17 lines
380 B
Haskell
17 lines
380 B
Haskell
module Main where
|
|
|
|
import Graphics.Vty
|
|
|
|
import Data.Default
|
|
|
|
main = do
|
|
vty <- mkVty def
|
|
let line0 = string (def `withForeColor` green) "first line"
|
|
line1 = string (def `withBackColor` blue) "second line"
|
|
img = line0 <-> line1
|
|
pic = picForImage img
|
|
update vty pic
|
|
e <- nextEvent vty
|
|
shutdown vty
|
|
print $ "Last event was: " ++ show e
|