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