roc/examples/cli/tui-platform/Program.roc
2022-09-11 22:32:15 -06:00

9 lines
159 B
Text

interface Program
exposes [Program]
imports []
Program model : {
init : {} -> model,
update : model, Str -> model,
view : model -> Str,
}