summary refs log tree commit diff
path: root/app/Screen.hs
blob: 9962cde24a42b1e25ed64d9b585dd373dd1d5a08 (plain)
1
2
3
4
5
6
7
module Screen
  ( clear
  ) where

clear :: IO ()
clear = putStr "\ESC[H\ESC[2J"