mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
11 lines
223 B
Text
11 lines
223 B
Text
app [main] { pf: platform "./platform/main.roc" }
|
|
|
|
import pf.Simple
|
|
|
|
Model : { value: I64 }
|
|
|
|
main = {
|
|
init: |{}| { value: 0 },
|
|
update: |m, delta| { value: m.value + delta },
|
|
render: |_m| Simple.leaf("hello"),
|
|
}
|