mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
14 lines
310 B
Text
14 lines
310 B
Text
app "tui"
|
|
packages { pf: "platform" }
|
|
imports [ pf.Program.{ Program } ]
|
|
provides [ main ] { Model } to pf
|
|
|
|
Model : Str
|
|
|
|
main : Program Model
|
|
main =
|
|
{
|
|
init: \{ } -> "Hello World",
|
|
update: \model, new -> Str.concat model new,
|
|
view: \model -> Str.concat model "!",
|
|
}
|