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