File: HelloWorldDemo.hs

package info (click to toggle)
haskell-brick 2.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,344 kB
  • sloc: haskell: 9,168; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 110 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
module Main where

import Brick

ui :: Widget ()
ui = str "Hello, world!"

main :: IO ()
main = simpleMain ui