roc/crates/cli/tests/test-projects/tui/main.roc
2024-10-09 20:04:36 +02:00

12 lines
262 B
Text

app [main, Model] { pf: platform "platform/main.roc" }
import pf.Program exposing [Program]
Model : Str
main : Program Model
main = {
init: \{} -> "Hello World",
update: \model, new -> Str.concat model new,
view: \model -> Str.concat model "!",
}