mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
12 lines
287 B
Text
12 lines
287 B
Text
platform examples/closure
|
|
requires { main : Effect {} }
|
|
exposes []
|
|
packages {}
|
|
imports []
|
|
provides [ mainForHost ]
|
|
effects Effect
|
|
{
|
|
putChar : Int -> Effect {},
|
|
putLine : Str -> Effect {},
|
|
getLine : Effect Str
|
|
}
|