Hello World

This commit is contained in:
vegowotenks 2025-07-31 23:49:50 +02:00
commit c5dbfdf903
11 changed files with 471 additions and 0 deletions

9
app/Main.hs Normal file
View file

@ -0,0 +1,9 @@
module Main (main) where
import Brick
ui :: Widget ()
ui = str "Hello, world!"
main :: IO ()
main = simpleMain ui