mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 06:44:46 +00:00
9 lines
274 B
Text
9 lines
274 B
Text
platform "tui"
|
|
requires { Model } { main : Effect {} }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [ mainForHost ]
|
|
|
|
mainForHost : { init : ({} -> Model) as Init, update : (Model, Str -> Model) as Update, view : (Model -> Str) as View }
|
|
mainForHost = main
|