roc/crates/cli/tests/test-projects/tui/main.roc

12 lines
266 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, "!"),
}