mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 23:31:12 +00:00
9 lines
163 B
Text
9 lines
163 B
Text
interface Task
|
|
exposes [ Task, putLine, after ]
|
|
imports [ Effect ]
|
|
|
|
Task a : Effect.Effect a
|
|
|
|
putLine = \line -> Effect.putLine line
|
|
|
|
after = Effect.after
|