mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
8 lines
226 B
Text
8 lines
226 B
Text
app Main provides [ main ] imports [ Effect ]
|
|
|
|
main : Effect.Effect {} as Fx
|
|
main =
|
|
Effect.putLine "Write a thing!"
|
|
|> Effect.after (\{} -> Effect.getLine 3)
|
|
|> Effect.after (\line -> Effect.putLine line)
|
|
|