mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
10 lines
181 B
Text
10 lines
181 B
Text
interface Program
|
|
exposes [ Program ]
|
|
imports []
|
|
|
|
Program model :
|
|
{
|
|
init : {} -> model,
|
|
update : model, Str -> model,
|
|
view : model -> Str,
|
|
}
|