mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 15:51:12 +00:00
15 lines
341 B
Text
15 lines
341 B
Text
platform folkertdev/foo
|
|
requires { rocMain : Effect {} }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [ mainForHost ]
|
|
effects Effect
|
|
{
|
|
putChar : Int -> Effect {},
|
|
putLine : Str -> Effect {},
|
|
getLine : Effect Str
|
|
}
|
|
|
|
mainForHost : Effect {} as Fx
|
|
mainForHost = rocMain
|