mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-23 12:02:28 +00:00
9 lines
159 B
Text
9 lines
159 B
Text
interface Program
|
|
exposes [Program]
|
|
imports []
|
|
|
|
Program model : {
|
|
init : {} -> model,
|
|
update : model, Str -> model,
|
|
view : model -> Str,
|
|
}
|