mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
9 lines
217 B
Text
9 lines
217 B
Text
app Main provides [ main ] imports [ Effect ]
|
|
|
|
main : Effect.Effect {} as Fx
|
|
main =
|
|
|
|
Effect.putLine "Hello"
|
|
|> Effect.after \{} -> Effect.putChar 87
|
|
# |> Effect.after \{} -> Effect.putLine "orld"
|
|
|