mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 00:24:34 +00:00
9 lines
193 B
Text
9 lines
193 B
Text
app "effect-example"
|
|
packages { base: "thing/platform-dir" }
|
|
imports [ base.Task.{ Task, after } ]
|
|
provides [ main ] to base
|
|
|
|
main : Task.Task {} I64
|
|
main =
|
|
Task.putLine "foo"
|
|
|