mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-29 08:49:40 +03:00
10 lines
229 B
Haskell
10 lines
229 B
Haskell
import Graphics.Vty
|
|
import Graphics.Vty.Inline
|
|
|
|
main = do
|
|
putStr "Not styled. "
|
|
putAttrChange_ t $ backColor red >> applyStyle underline
|
|
putStr " Styled! "
|
|
putAttrChange_ t $ defaultAll
|
|
putStrLn "Not styled."
|