roc/examples/tui/platform/Program.roc
2022-01-23 21:25:20 +01:00

10 lines
181 B
Text

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