mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 07:41:12 +00:00
13 lines
273 B
Text
13 lines
273 B
Text
platform folkertdev/foo
|
|
requires { main : Effect {} }
|
|
exposes []
|
|
packages {}
|
|
imports [ Task ]
|
|
provides [ mainForHost ]
|
|
effects Effect
|
|
{
|
|
putLine : Str -> Effect {}
|
|
}
|
|
|
|
mainForHost : Task.Task {} [] as Fx
|
|
mainForHost = main
|