mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
8 lines
230 B
Text
8 lines
230 B
Text
app "effect-example"
|
|
packages { base: "thing/platform-dir" }
|
|
imports [fx.Effect]
|
|
provides [ main ] to base
|
|
|
|
main : Effect.Effect {}
|
|
main =
|
|
Effect.after Effect.getLine \lineThisThing -> Effect.putLine lineThisThing
|