mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-27 00:50:57 +03:00
18 lines
400 B
Haskell
18 lines
400 B
Haskell
module Main where
|
|
|
|
import Control.Monad (void)
|
|
import Graphics.Vty
|
|
|
|
main :: IO ()
|
|
main = do
|
|
cfg <- standardIOConfig
|
|
vty <- mkVty cfg
|
|
let line1 = charFill (defAttr `withBackColor` blue) ' ' 10 1
|
|
line2 = charFill (defAttr `withBackColor` green) ' ' 10 1
|
|
img = translate 10 5 (line1 `vertJoin` line2)
|
|
pic = picForImage img
|
|
|
|
update vty pic
|
|
void $ nextEvent vty
|
|
shutdown vty
|