diff options
Diffstat (limited to 'app/Screen.hs')
| -rw-r--r-- | app/Screen.hs | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/app/Screen.hs b/app/Screen.hs new file mode 100644 index 0000000..9962cde --- /dev/null +++ b/app/Screen.hs @@ -0,0 +1,7 @@ +module Screen +  ( clear +  ) where + +clear :: IO () +clear = putStr "\ESC[H\ESC[2J" + | 
