nim-chronos/tests/test3.nim
2018-05-16 11:22:34 +03:00

11 lines
180 B
Nim

import asyncdispatch2
proc task() {.async.} =
await sleepAsync(1000)
proc waitTask() {.async.} =
echo await withTimeout(task(), 100)
when isMainModule:
waitFor waitTask()