mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
11 lines
248 B
Text
11 lines
248 B
Text
app [main] { pf: platform "effects-platform/main.roc" }
|
|
|
|
import pf.PlatformTasks
|
|
|
|
main : Task {} []
|
|
main =
|
|
line = PlatformTasks.getLine!
|
|
PlatformTasks.putLine! "You entered: $(line)"
|
|
PlatformTasks.putLine! "It is known"
|
|
|
|
Task.ok {}
|