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