mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
6 lines
165 B
Text
6 lines
165 B
Text
interface Stdout
|
|
exposes [ line ]
|
|
imports [ pf.Effect, Task.{ Task } ]
|
|
|
|
line : Str -> Task {} *
|
|
line = \str -> Effect.map (Effect.putLine str) (\_ -> Ok {})
|